Remove the unnecessary NULL fields in global instance definition of file_operations

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2023-01-01 01:11:53 +08:00
committed by Petro Karashchenko
parent 1815f8b731
commit 779a610ca3
209 changed files with 1 additions and 961 deletions
-4
View File
@@ -78,10 +78,6 @@ static const struct file_operations g_foc_fops =
NULL, /* write */
NULL, /* seek */
foc_ioctl, /* ioctl */
NULL /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, NULL /* unlink */
#endif
};
/* FOC callbacks from the lower-half implementation to this driver */
-4
View File
@@ -80,10 +80,6 @@ static const struct file_operations motor_fops =
motor_write, /* write */
NULL, /* seek */
motor_ioctl, /* ioctl */
NULL /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, NULL /* unlink */
#endif
};
/****************************************************************************