diff options
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dmaengine.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 | ||