diff options
Diffstat (limited to 'arch/arm/plat-mxc/devices.c')
-rw-r--r-- | arch/arm/plat-mxc/devices.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/devices.c b/arch/arm/plat-mxc/devices.c index fb166b20f60f..0d6ed31bdbf2 100644 --- a/arch/arm/plat-mxc/devices.c +++ b/arch/arm/plat-mxc/devices.c | |||
@@ -95,8 +95,22 @@ struct device mxc_aips_bus = { | |||
95 | .parent = &platform_bus, | 95 | .parent = &platform_bus, |
96 | }; | 96 | }; |
97 | 97 | ||
98 | struct device mxc_ahb_bus = { | ||
99 | .init_name = "mxc_ahb", | ||
100 | .parent = &platform_bus, | ||
101 | }; | ||
102 | |||
98 | static int __init mxc_device_init(void) | 103 | static int __init mxc_device_init(void) |
99 | { | 104 | { |
100 | return device_register(&mxc_aips_bus); | 105 | int ret; |
106 | |||
107 | ret = device_register(&mxc_aips_bus); | ||
108 | if (IS_ERR_VALUE(ret)) | ||
109 | goto done; | ||
110 | |||
111 | ret = device_register(&mxc_ahb_bus); | ||
112 | |||
113 | done: | ||
114 | return ret; | ||
101 | } | 115 | } |
102 | core_initcall(mxc_device_init); | 116 | core_initcall(mxc_device_init); |