projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc4a7ff
)
spi: fsl-lpspi: fix indentation error
author
Gao Pan
<pandy.gao@nxp.com>
Wed, 4 Jan 2017 09:38:16 +0000
(17:38 +0800)
committer
Mark Brown
<broonie@kernel.org>
Mon, 9 Jan 2017 19:34:02 +0000
(19:34 +0000)
This patch fixes the indentation error in spi-fsl-lpspi.c.
Signed-off-by: Gao Pan <pandy.gao@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-fsl-lpspi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/spi/spi-fsl-lpspi.c
b/drivers/spi/spi-fsl-lpspi.c
index 2b93bc605b91c5ec99918bbe052740b6a883180e..cb3c73007ca15a79dc4283c8a07d065118cbca24 100644
(file)
--- a/
drivers/spi/spi-fsl-lpspi.c
+++ b/
drivers/spi/spi-fsl-lpspi.c
@@
-512,9
+512,9
@@
static int fsl_lpspi_remove(struct platform_device *pdev)
static struct platform_driver fsl_lpspi_driver = {
.driver = {
-
.name = DRIVER_NAME,
-
.of_match_table = fsl_lpspi_dt_ids,
-
},
+ .name = DRIVER_NAME,
+ .of_match_table = fsl_lpspi_dt_ids,
+ },
.probe = fsl_lpspi_probe,
.remove = fsl_lpspi_remove,
};