mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 18:36:00 +00:00
staging: iio: addac: adt7316.h Fix Unnecessary space after function pointer name
The patch fixes the following checkpatch.pl warnings: WARNING: Unnecessary space after function pointer name. Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
67fc0120e5
commit
4b31467d54
@ -18,10 +18,10 @@ struct adt7316_bus {
|
||||
void *client;
|
||||
int irq;
|
||||
int irq_flags;
|
||||
int (*read) (void *client, u8 reg, u8 *data);
|
||||
int (*write) (void *client, u8 reg, u8 val);
|
||||
int (*multi_read) (void *client, u8 first_reg, u8 count, u8 *data);
|
||||
int (*multi_write) (void *client, u8 first_reg, u8 count, u8 *data);
|
||||
int (*read)(void *client, u8 reg, u8 *data);
|
||||
int (*write)(void *client, u8 reg, u8 val);
|
||||
int (*multi_read)(void *client, u8 first_reg, u8 count, u8 *data);
|
||||
int (*multi_write)(void *client, u8 first_reg, u8 count, u8 *data);
|
||||
};
|
||||
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
|
Loading…
x
Reference in New Issue
Block a user