mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
Staging: iio: meter: Fix unnecessary space warning
Fixed "Unnecessary space before function pointer argument" checkpatch.pl warning in ade7854.h Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b5e736bd68
commit
020e46e06a
@ -153,14 +153,14 @@
|
||||
struct ade7854_state {
|
||||
struct spi_device *spi;
|
||||
struct i2c_client *i2c;
|
||||
int (*read_reg_8) (struct device *, u16, u8 *);
|
||||
int (*read_reg_16) (struct device *, u16, u16 *);
|
||||
int (*read_reg_24) (struct device *, u16, u32 *);
|
||||
int (*read_reg_32) (struct device *, u16, u32 *);
|
||||
int (*write_reg_8) (struct device *, u16, u8);
|
||||
int (*write_reg_16) (struct device *, u16, u16);
|
||||
int (*write_reg_24) (struct device *, u16, u32);
|
||||
int (*write_reg_32) (struct device *, u16, u32);
|
||||
int (*read_reg_8)(struct device *, u16, u8 *);
|
||||
int (*read_reg_16)(struct device *, u16, u16 *);
|
||||
int (*read_reg_24)(struct device *, u16, u32 *);
|
||||
int (*read_reg_32)(struct device *, u16, u32 *);
|
||||
int (*write_reg_8)(struct device *, u16, u8);
|
||||
int (*write_reg_16)(struct device *, u16, u16);
|
||||
int (*write_reg_24)(struct device *, u16, u32);
|
||||
int (*write_reg_32)(struct device *, u16, u32);
|
||||
int irq;
|
||||
struct mutex buf_lock;
|
||||
u8 tx[ADE7854_MAX_TX] ____cacheline_aligned;
|
||||
|
Loading…
x
Reference in New Issue
Block a user