mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 11:40:19 -04:00
staging: iio: light: Remove space before function pointer arguments
This fixes the following checkpatch.pl warning: WARNING: Unnecessary space before function pointer arguments Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com> Acked-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ad3e646c5b
commit
10b2e445aa
@@ -91,8 +91,8 @@ struct tsl2x7x_settings {
|
||||
*/
|
||||
struct tsl2X7X_platform_data {
|
||||
int (*platform_power)(struct device *dev, pm_message_t);
|
||||
int (*power_on) (struct iio_dev *indio_dev);
|
||||
int (*power_off) (struct i2c_client *dev);
|
||||
int (*power_on)(struct iio_dev *indio_dev);
|
||||
int (*power_off)(struct i2c_client *dev);
|
||||
struct tsl2x7x_lux platform_lux_table[TSL2X7X_MAX_LUX_TABLE_SIZE];
|
||||
struct tsl2x7x_settings *platform_default_settings;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user