aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/macintosh/macio_asic.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/macintosh/macio_asic.c')
-rw-r--r--drivers/macintosh/macio_asic.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/macintosh/macio_asic.c b/drivers/macintosh/macio_asic.c
index 37b18ee08a2d..7fa369cfcceb 100644
--- a/drivers/macintosh/macio_asic.c
+++ b/drivers/macintosh/macio_asic.c
@@ -126,11 +126,14 @@ static int macio_device_resume(struct device * dev)
126 return 0; 126 return 0;
127} 127}
128 128
129extern struct device_attribute macio_dev_attrs[];
130
129struct bus_type macio_bus_type = { 131struct bus_type macio_bus_type = {
130 .name = "macio", 132 .name = "macio",
131 .match = macio_bus_match, 133 .match = macio_bus_match,
132 .suspend = macio_device_suspend, 134 .suspend = macio_device_suspend,
133 .resume = macio_device_resume, 135 .resume = macio_device_resume,
136 .dev_attrs = macio_dev_attrs,
134}; 137};
135 138
136static int __init macio_bus_driver_init(void) 139static int __init macio_bus_driver_init(void)