projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa102ff
)
can: tcan4x5x: beautify indention of tcan4x5x_of_match and tcan4x5x_id_table
author
Marc Kleine-Budde
<mkl@pengutronix.de>
Tue, 15 Dec 2020 23:17:32 +0000
(
00:17
+0100)
committer
Marc Kleine-Budde
<mkl@pengutronix.de>
Wed, 6 Jan 2021 14:15:37 +0000
(15:15 +0100)
This patch beautifies the indention of the tcan4x5x_of_match and
tcan4x5x_id_table.
Reviewed-by: Dan Murphy <dmurphy@ti.com>
Tested-by: Sean Nyekjaer <sean@geanix.com>
Link:
https://lore.kernel.org/r/20201215231746.1132907-3-mkl@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/m_can/tcan4x5x.c
patch
|
blob
|
history
diff --git
a/drivers/net/can/m_can/tcan4x5x.c
b/drivers/net/can/m_can/tcan4x5x.c
index
1b5f706
..
1b47c9d
100644
(file)
--- a/
drivers/net/can/m_can/tcan4x5x.c
+++ b/
drivers/net/can/m_can/tcan4x5x.c
@@
-527,17
+527,20
@@
static int tcan4x5x_can_remove(struct spi_device *spi)
}
static const struct of_device_id tcan4x5x_of_match[] = {
- { .compatible = "ti,tcan4x5x", },
- { }
+ {
+ .compatible = "ti,tcan4x5x",
+ }, {
+ /* sentinel */
+ },
};
MODULE_DEVICE_TABLE(of, tcan4x5x_of_match);
static const struct spi_device_id tcan4x5x_id_table[] = {
{
- .name = "tcan4x5x",
- .driver_data = 0,
+ .name = "tcan4x5x",
+ }, {
+ /* sentinel */
},
- { }
};
MODULE_DEVICE_TABLE(spi, tcan4x5x_id_table);