Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arch/arm/src/cxd56xx/cxd56_geofence.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ static const struct file_operations g_geofencefops =
NULL, /* write */
NULL, /* seek */
cxd56_geofence_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
cxd56_geofence_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/src/cxd56xx/cxd56_gnss.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ static const struct file_operations g_gnssfops =
cxd56_gnss_write, /* write */
NULL, /* seek */
cxd56_gnss_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
cxd56_gnss_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/src/cxd56xx/cxd56_hostif.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ static const struct file_operations g_hif_fops =
hif_write, /* write */
hif_seek, /* seek */
hif_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
hif_poll /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, hif_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/src/sama5/sam_tsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ static const struct file_operations g_tsdops =
NULL, /* write */
NULL, /* seek */
sam_tsd_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
sam_tsd_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion boards/arm/sam34/sam4l-xplained/src/sam_slcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ static const struct file_operations g_slcdops =
slcd_write, /* write */
NULL, /* seek */
slcd_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
slcd_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion boards/arm/stm32/mikroe-stm32f4/src/stm32_touchscreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ static const struct file_operations tc_fops =
NULL, /* write */
NULL, /* seek */
tc_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
tc_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion boards/arm/stm32/stm32ldiscovery/src/stm32_lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ static const struct file_operations g_slcdops =
slcd_write, /* write */
NULL, /* seek */
slcd_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
slcd_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion boards/mips/pic32mx/pic32mx7mmb/src/pic32_touchscreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ static const struct file_operations tc_fops =
NULL, /* write */
NULL, /* seek */
tc_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
tc_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion boards/mips/pic32mx/sure-pic32mx/src/pic32mx_lcd1602.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ static const struct file_operations g_lcdops =
lcd_write, /* write */
NULL, /* seek */
lcd_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
lcd_poll /* poll */
};

Expand Down
4 changes: 2 additions & 2 deletions crypto/cryptodev.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ static const struct file_operations g_cryptofops =
cryptof_write, /* write */
NULL, /* seek */
cryptof_ioctl, /* ioctl */
NULL, /* mmap */
NULL, /* truncate */
NULL, /* mmap */
cryptof_poll /* poll */
};

Expand All @@ -138,8 +138,8 @@ static const struct file_operations g_cryptoops =
NULL, /* write */
NULL, /* seek */
cryptoioctl, /* ioctl */
NULL, /* mmap */
NULL, /* truncate */
NULL, /* mmap */
NULL /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/analog/adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ static const struct file_operations g_adc_fops =
NULL, /* write */
NULL, /* seek */
adc_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
adc_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/analog/comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ static const struct file_operations comp_fops =
NULL, /* write */
NULL, /* seek */
comp_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
comp_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/bch/bchdev_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ const struct file_operations bch_fops =
bch_write, /* write */
bch_seek, /* seek */
bch_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
bch_poll /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, bch_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion drivers/can/can.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ static const struct file_operations g_canops =
can_write, /* write */
NULL, /* seek */
can_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
can_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/crypto/dev_urandom.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ static const struct file_operations g_urand_fops =
devurand_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
devurand_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/i2c/i2c_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ static const struct file_operations i2cdrvr_fops =
i2cdrvr_write, /* write */
NULL, /* seek */
i2cdrvr_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
NULL /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, i2cdrvr_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion drivers/input/ads7843e.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ static const struct file_operations ads7843e_fops =
NULL, /* write */
NULL, /* seek */
ads7843e_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
ads7843e_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/ajoystick.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ static const struct file_operations ajoy_fops =
NULL, /* write */
NULL, /* seek */
ajoy_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
ajoy_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/button_upper.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ static const struct file_operations btn_fops =
btn_write, /* write */
NULL, /* seek */
btn_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
btn_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/cypress_mbr3108.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ static const struct file_operations g_mbr3108_fileops =
mbr3108_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
mbr3108_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/djoystick.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ static const struct file_operations djoy_fops =
NULL, /* write */
NULL, /* seek */
djoy_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
djoy_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/ft5x06.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ static const struct file_operations ft5x06_fops =
NULL, /* write */
NULL, /* seek */
ft5x06_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
ft5x06_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/keyboard_upper.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ static const struct file_operations g_keyboard_fops =
keyboard_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
keyboard_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/max11802.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ static const struct file_operations max11802_fops =
NULL, /* write */
NULL, /* seek */
max11802_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
max11802_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/mxt.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ static const struct file_operations mxt_fops =
NULL, /* write */
NULL, /* seek */
mxt_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
mxt_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/spq10kbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ static const struct file_operations g_hidkbd_fops =
spq10kbd_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
spq10kbd_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/stmpe811_tsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ static const struct file_operations g_stmpe811fops =
NULL, /* write */
NULL, /* seek */
stmpe811_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
stmpe811_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/touchscreen_upper.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ static const struct file_operations g_touch_fops =
touch_write, /* write */
NULL, /* seek */
touch_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
touch_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/input/tsc2007.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ static const struct file_operations tsc2007_fops =
NULL, /* write */
NULL, /* seek */
tsc2007_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
tsc2007_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/lcd/ft80x.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ static const struct file_operations g_ft80x_fops =
ft80x_write, /* write */
NULL, /* seek */
ft80x_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
NULL /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, ft80x_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion drivers/lcd/pcf8574_lcd_backpack.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ static const struct file_operations g_pcf8574_lcd_fops =
pcf8574_lcd_write, /* write */
pcf8574_lcd_seek, /* seek */
pcf8574_lcd_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
pcf8574_lcd_poll /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, pcf8574_lcd_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion drivers/lcd/tda19988.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ static const struct file_operations tda19988_fops =
tda19988_write, /* write */
tda19988_seek, /* seek */
tda19988_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
tda19988_poll /* poll */
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
, tda19988_unlink /* unlink */
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/dev_null.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ static const struct file_operations devnull_fops =
devnull_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
devnull_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/dev_zero.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ static const struct file_operations devzero_fops =
devzero_write, /* write */
NULL, /* seek */
NULL, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
devzero_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/rpmsgdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ const struct file_operations g_rpmsgdev_ops =
rpmsgdev_write, /* write */
rpmsgdev_seek, /* seek */
rpmsgdev_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
rpmsgdev_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/modem/alt1250/alt1250.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ static const struct file_operations g_alt1250fops =
NULL, /* write */
NULL, /* seek */
alt1250_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
alt1250_poll, /* poll */
};
static uint8_t g_recvbuff[ALTCOM_RX_PKT_SIZE_MAX];
Expand Down
2 changes: 1 addition & 1 deletion drivers/modem/u-blox.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ static const struct file_operations ubxmdm_fops =
ubxmdm_write, /* write */
NULL, /* seek */
ubxmdm_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
ubxmdm_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/mtd_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ static const struct file_operations mtdconfig_fops =
NULL, /* write */
NULL, /* seek */
mtdconfig_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
mtdconfig_poll /* poll */
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/telnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ static const struct file_operations g_telnet_fops =
telnet_write, /* write */
NULL, /* seek */
telnet_ioctl, /* ioctl */
NULL, /* truncate */
NULL, /* mmap */
NULL, /* truncate */
telnet_poll /* poll */
};

Expand Down
Loading