mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 09:45:55 +08:00
CAN driver: Oop. unlink method does not exist if there operaions on the pseudo filesystem are disabled
This commit is contained in:
+5
-3
@@ -112,11 +112,13 @@ static const struct file_operations g_canops =
|
||||
can_read, /* read */
|
||||
can_write, /* write */
|
||||
0, /* seek */
|
||||
can_ioctl, /* ioctl */
|
||||
can_ioctl /* ioctl */
|
||||
#ifndef CONFIG_DISABLE_POLL
|
||||
0, /* poll */
|
||||
, 0 /* poll */
|
||||
#endif
|
||||
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
||||
, 0 /* unlink */
|
||||
#endif
|
||||
0 /* unlink */
|
||||
};
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user