Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Dhaval Shah and committed by
Greg Kroah-Hartman
eb90826b 533dfb25

+6 -6
+6 -6
drivers/misc/ad525x_dpot.h
··· 195 195 struct dpot_data; 196 196 197 197 struct ad_dpot_bus_ops { 198 - int (*read_d8) (void *client); 199 - int (*read_r8d8) (void *client, u8 reg); 200 - int (*read_r8d16) (void *client, u8 reg); 201 - int (*write_d8) (void *client, u8 val); 202 - int (*write_r8d8) (void *client, u8 reg, u8 val); 203 - int (*write_r8d16) (void *client, u8 reg, u16 val); 198 + int (*read_d8)(void *client); 199 + int (*read_r8d8)(void *client, u8 reg); 200 + int (*read_r8d16)(void *client, u8 reg); 201 + int (*write_d8)(void *client, u8 val); 202 + int (*write_r8d8)(void *client, u8 reg, u8 val); 203 + int (*write_r8d16)(void *client, u8 reg, u16 val); 204 204 }; 205 205 206 206 struct ad_dpot_bus_data {