diff options
-rw-r--r-- | drivers/dca/dca-core.c | 2 | ||||
-rw-r--r-- | drivers/dma/dmaengine.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dca/dca-core.c b/drivers/dca/dca-core.c index d883e1b8bb8c..55433849bfa6 100644 --- a/drivers/dca/dca-core.c +++ b/drivers/dca/dca-core.c | |||
@@ -270,6 +270,6 @@ static void __exit dca_exit(void) | |||
270 | dca_sysfs_exit(); | 270 | dca_sysfs_exit(); |
271 | } | 271 | } |
272 | 272 | ||
273 | subsys_initcall(dca_init); | 273 | arch_initcall(dca_init); |
274 | module_exit(dca_exit); | 274 | module_exit(dca_exit); |
275 | 275 | ||
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 9d3594cf17e0..403dbe781122 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c | |||
@@ -318,7 +318,7 @@ static int __init dma_channel_table_init(void) | |||
318 | 318 | ||
319 | return err; | 319 | return err; |
320 | } | 320 | } |
321 | subsys_initcall(dma_channel_table_init); | 321 | arch_initcall(dma_channel_table_init); |
322 | 322 | ||
323 | /** | 323 | /** |
324 | * dma_find_channel - find a channel to carry out the operation | 324 | * dma_find_channel - find a channel to carry out the operation |
@@ -990,6 +990,6 @@ static int __init dma_bus_init(void) | |||
990 | mutex_init(&dma_list_mutex); | 990 | mutex_init(&dma_list_mutex); |
991 | return class_register(&dma_devclass); | 991 | return class_register(&dma_devclass); |
992 | } | 992 | } |
993 | subsys_initcall(dma_bus_init); | 993 | arch_initcall(dma_bus_init); |
994 | 994 | ||
995 | 995 | ||