mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
POSIX Device: Fix IOCTL interface
This commit is contained in:
parent
fc0ff0d2f6
commit
65cf8caef2
@ -96,7 +96,7 @@ Device::dev_write(unsigned offset, void *data, unsigned count)
|
||||
}
|
||||
|
||||
int
|
||||
Device::dev_ioctl(unsigned operation, unsigned &arg)
|
||||
Device::dev_ioctl(unsigned operation, unsigned arg)
|
||||
{
|
||||
switch (operation) {
|
||||
case DEVIOCGDEVICEID:
|
||||
|
||||
@ -128,7 +128,7 @@ public:
|
||||
* @param arg An argument to the operation.
|
||||
* @return Negative errno on error, OK or positive value on success.
|
||||
*/
|
||||
virtual int dev_ioctl(unsigned operation, unsigned &arg);
|
||||
virtual int dev_ioctl(unsigned operation, unsigned arg);
|
||||
|
||||
/*
|
||||
device bus types for DEVID
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user