mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 15:41:39 +00:00
spi: xilinx: remove unnecessary spaces
Remove unnecessary space in order to fix the following checkpatch issues. WARNING: Unnecessary space after function pointer name Signed-off-by: Jingoo Han <jg1.han@samsung.com> Reviewed-by: Michal Simek <monstr@monstr.eu> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
9bf46f6df5
commit
6ff8672a96
@ -88,10 +88,10 @@ struct xilinx_spi {
|
||||
const u8 *tx_ptr; /* pointer in the Rx buffer */
|
||||
int remaining_bytes; /* the number of bytes left to transfer */
|
||||
u8 bits_per_word;
|
||||
unsigned int (*read_fn) (void __iomem *);
|
||||
void (*write_fn) (u32, void __iomem *);
|
||||
void (*tx_fn) (struct xilinx_spi *);
|
||||
void (*rx_fn) (struct xilinx_spi *);
|
||||
unsigned int (*read_fn)(void __iomem *);
|
||||
void (*write_fn)(u32, void __iomem *);
|
||||
void (*tx_fn)(struct xilinx_spi *);
|
||||
void (*rx_fn)(struct xilinx_spi *);
|
||||
};
|
||||
|
||||
static void xspi_write32(u32 val, void __iomem *addr)
|
||||
|
Loading…
Reference in New Issue
Block a user