forked from Archive/PX4-Autopilot
Fixed missing parent ioctl call
This commit is contained in:
parent
7a4efc81b9
commit
15c079921b
|
@ -234,6 +234,11 @@ GPS::ioctl(struct file *filp, int cmd, unsigned long arg)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
/* give it to parent if no one wants it */
|
||||||
|
ret = CDev::ioctl(filp, cmd, arg);
|
||||||
|
break;
|
||||||
|
|
||||||
unlock();
|
unlock();
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue