From: Roberta Dobrescu Date: Thu, 25 Sep 2014 17:09:10 +0000 (+0300) Subject: staging: iio: light: Remove space before function pointer arguments X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=10b2e445aa31c6e4118bbb928d76f1f7a6431402;p=linux-beck.git 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 Acked-by: Daniel Baluta Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/iio/light/tsl2x7x.h b/drivers/staging/iio/light/tsl2x7x.h index c4acf5ff1794..ecae92211216 100644 --- a/drivers/staging/iio/light/tsl2x7x.h +++ b/drivers/staging/iio/light/tsl2x7x.h @@ -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; };