diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-25 20:24:47 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-26 23:40:07 -0500 |
commit | 6ff8672a96a01ec0861784b23be48a32443269f7 (patch) | |
tree | 617659b973522bed594840e8e83445f01e4d115d /drivers/spi/spi-xilinx.c | |
parent | 9bf46f6df5d1e9db8b4b786d22e88d8b6edd949e (diff) |
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>
Diffstat (limited to 'drivers/spi/spi-xilinx.c')
-rw-r--r-- | drivers/spi/spi-xilinx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c index 4eb1ed9ab6da..85082a85ee37 100644 --- a/drivers/spi/spi-xilinx.c +++ b/drivers/spi/spi-xilinx.c | |||
@@ -88,10 +88,10 @@ struct xilinx_spi { | |||
88 | const u8 *tx_ptr; /* pointer in the Rx buffer */ | 88 | const u8 *tx_ptr; /* pointer in the Rx buffer */ |
89 | int remaining_bytes; /* the number of bytes left to transfer */ | 89 | int remaining_bytes; /* the number of bytes left to transfer */ |
90 | u8 bits_per_word; | 90 | u8 bits_per_word; |
91 | unsigned int (*read_fn) (void __iomem *); | 91 | unsigned int (*read_fn)(void __iomem *); |
92 | void (*write_fn) (u32, void __iomem *); | 92 | void (*write_fn)(u32, void __iomem *); |
93 | void (*tx_fn) (struct xilinx_spi *); | 93 | void (*tx_fn)(struct xilinx_spi *); |
94 | void (*rx_fn) (struct xilinx_spi *); | 94 | void (*rx_fn)(struct xilinx_spi *); |
95 | }; | 95 | }; |
96 | 96 | ||
97 | static void xspi_write32(u32 val, void __iomem *addr) | 97 | static void xspi_write32(u32 val, void __iomem *addr) |