aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhaval Shah <dhaval.shah@softnautics.com>2017-12-08 03:07:30 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-18 09:59:17 -0500
commiteb90826babfb13cf5cf240187d56cdfed9df5064 (patch)
treef41a5bee406b71af235d086dca67b5d11e84e30c
parent533dfb250d1c8d2bb8c9b65252f7b296b29913d4 (diff)
misc: ad525x_dpot: Unnecessary space before function pointer arguments
Resolved all the Unnecessary space before function pointer arguments checkpatch warnings. Issue found by checkpatch. Signed-off-by: Dhaval Shah <dhaval.shah@softnautics.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/misc/ad525x_dpot.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/misc/ad525x_dpot.h b/drivers/misc/ad525x_dpot.h
index 6bd1eba23bc0..443a51fd5680 100644
--- a/drivers/misc/ad525x_dpot.h
+++ b/drivers/misc/ad525x_dpot.h
@@ -195,12 +195,12 @@ enum dpot_devid {
195struct dpot_data; 195struct dpot_data;
196 196
197struct ad_dpot_bus_ops { 197struct ad_dpot_bus_ops {
198 int (*read_d8) (void *client); 198 int (*read_d8)(void *client);
199 int (*read_r8d8) (void *client, u8 reg); 199 int (*read_r8d8)(void *client, u8 reg);
200 int (*read_r8d16) (void *client, u8 reg); 200 int (*read_r8d16)(void *client, u8 reg);
201 int (*write_d8) (void *client, u8 val); 201 int (*write_d8)(void *client, u8 val);
202 int (*write_r8d8) (void *client, u8 reg, u8 val); 202 int (*write_r8d8)(void *client, u8 reg, u8 val);
203 int (*write_r8d16) (void *client, u8 reg, u16 val); 203 int (*write_r8d16)(void *client, u8 reg, u16 val);
204}; 204};
205 205
206struct ad_dpot_bus_data { 206struct ad_dpot_bus_data {