Teach RGB led driver to forward unknown IOCTLs

This commit is contained in:
Lorenz Meier 2014-03-17 14:32:02 +01:00
parent 533e3172dc
commit 9cdb416d3a
1 changed files with 2 additions and 0 deletions

View File

@ -242,6 +242,8 @@ RGBLED::ioctl(struct file *filp, int cmd, unsigned long arg)
return OK; return OK;
default: default:
/* see if the parent class can make any use of it */
ret = CDev::ioctl(filep, cmd, arg);
break; break;
} }