OSDN Git Service

macintosh/adb: Use C99 initializers for struct adb_driver instances
authorFinn Thain <fthain@telegraphics.com.au>
Thu, 29 Mar 2018 00:36:04 +0000 (11:36 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 30 Mar 2018 13:10:32 +0000 (00:10 +1100)
No change to object files.

Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
drivers/macintosh/adb-iop.c
drivers/macintosh/macio-adb.c
drivers/macintosh/via-macii.c
drivers/macintosh/via-pmu.c
drivers/macintosh/via-pmu68k.c

index 15db69d..ca623e6 100644 (file)
@@ -53,13 +53,13 @@ static void adb_iop_poll(void);
 static int adb_iop_reset_bus(void);
 
 struct adb_driver adb_iop_driver = {
-       "ISM IOP",
-       adb_iop_probe,
-       adb_iop_init,
-       adb_iop_send_request,
-       adb_iop_autopoll,
-       adb_iop_poll,
-       adb_iop_reset_bus
+       .name         = "ISM IOP",
+       .probe        = adb_iop_probe,
+       .init         = adb_iop_init,
+       .send_request = adb_iop_send_request,
+       .autopoll     = adb_iop_autopoll,
+       .poll         = adb_iop_poll,
+       .reset_bus    = adb_iop_reset_bus
 };
 
 static void adb_iop_end_req(struct adb_request *req, int state)
index 9a6223a..eb3adfb 100644 (file)
@@ -70,14 +70,13 @@ static void macio_adb_poll(void);
 static int macio_adb_reset_bus(void);
 
 struct adb_driver macio_adb_driver = {
-       "MACIO",
-       macio_probe,
-       macio_init,
-       macio_send_request,
-       /*macio_write,*/
-       macio_adb_autopoll,
-       macio_adb_poll,
-       macio_adb_reset_bus
+       .name         = "MACIO",
+       .probe        = macio_probe,
+       .init         = macio_init,
+       .send_request = macio_send_request,
+       .autopoll     = macio_adb_autopoll,
+       .poll         = macio_adb_poll,
+       .reset_bus    = macio_adb_reset_bus,
 };
 
 int macio_probe(void)
index 4ba06a1..cf6f7d5 100644 (file)
@@ -91,13 +91,13 @@ static void macii_poll(void);
 static int macii_reset_bus(void);
 
 struct adb_driver via_macii_driver = {
-       "Mac II",
-       macii_probe,
-       macii_init,
-       macii_send_request,
-       macii_autopoll,
-       macii_poll,
-       macii_reset_bus
+       .name         = "Mac II",
+       .probe        = macii_probe,
+       .init         = macii_init,
+       .send_request = macii_send_request,
+       .autopoll     = macii_autopoll,
+       .poll         = macii_poll,
+       .reset_bus    = macii_reset_bus,
 };
 
 static enum macii_state {
index fc56c70..433dbed 100644 (file)
@@ -199,13 +199,13 @@ static const struct file_operations pmu_options_proc_fops;
 
 #ifdef CONFIG_ADB
 const struct adb_driver via_pmu_driver = {
-       "PMU",
-       pmu_probe,
-       pmu_init,
-       pmu_send_request,
-       pmu_adb_autopoll,
-       pmu_poll_adb,
-       pmu_adb_reset_bus
+       .name         = "PMU",
+       .probe        = pmu_probe,
+       .init         = pmu_init,
+       .send_request = pmu_send_request,
+       .autopoll     = pmu_adb_autopoll,
+       .poll         = pmu_poll_adb,
+       .reset_bus    = pmu_adb_reset_bus,
 };
 #endif /* CONFIG_ADB */
 
index 25465fb..de69369 100644 (file)
@@ -119,13 +119,13 @@ static void pmu_enable_backlight(int on);
 static void pmu_set_brightness(int level);
 
 struct adb_driver via_pmu_driver = {
-       "68K PMU",
-       pmu_probe,
-       pmu_init,
-       pmu_send_request,
-       pmu_autopoll,
-       pmu_poll,
-       pmu_reset_bus
+       .name         = "68K PMU",
+       .probe        = pmu_probe,
+       .init         = pmu_init,
+       .send_request = pmu_send_request,
+       .autopoll     = pmu_autopoll,
+       .poll         = pmu_poll,
+       .reset_bus    = pmu_reset_bus,
 };
 
 /*