diff options
Diffstat (limited to 'drivers/macintosh/macio_asic.c')
-rw-r--r-- | drivers/macintosh/macio_asic.c | 3 |
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 | ||
129 | extern struct device_attribute macio_dev_attrs[]; | ||
130 | |||
129 | struct bus_type macio_bus_type = { | 131 | struct 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 | ||
136 | static int __init macio_bus_driver_init(void) | 139 | static int __init macio_bus_driver_init(void) |