macintosh/adb: Use C99 initializers for struct adb_driver instances
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>
This commit is contained in:
parent
741de61766
commit
3a52f6f980
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue