diff options
-rw-r--r-- | arch/arm/mach-s3c2410/dma.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c2412/dma.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/dma.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c2443/dma.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-s3c24xx/dma.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-s3c2410/dma.c b/arch/arm/mach-s3c2410/dma.c index 80d83739ab9f..8f12e855ef5f 100644 --- a/arch/arm/mach-s3c2410/dma.c +++ b/arch/arm/mach-s3c2410/dma.c | |||
@@ -145,7 +145,7 @@ static struct s3c24xx_dma_order __initdata s3c2410_dma_order = { | |||
145 | }, | 145 | }, |
146 | }; | 146 | }; |
147 | 147 | ||
148 | static int s3c2410_dma_add(struct sys_device *sysdev) | 148 | static int __init s3c2410_dma_add(struct sys_device *sysdev) |
149 | { | 149 | { |
150 | s3c2410_dma_init(); | 150 | s3c2410_dma_init(); |
151 | s3c24xx_dma_order_set(&s3c2410_dma_order); | 151 | s3c24xx_dma_order_set(&s3c2410_dma_order); |
diff --git a/arch/arm/mach-s3c2412/dma.c b/arch/arm/mach-s3c2412/dma.c index 4b9425c1bf72..53c1d5bbce19 100644 --- a/arch/arm/mach-s3c2412/dma.c +++ b/arch/arm/mach-s3c2412/dma.c | |||
@@ -144,7 +144,7 @@ static struct s3c24xx_dma_selection __initdata s3c2412_dma_sel = { | |||
144 | .map_size = ARRAY_SIZE(s3c2412_dma_mappings), | 144 | .map_size = ARRAY_SIZE(s3c2412_dma_mappings), |
145 | }; | 145 | }; |
146 | 146 | ||
147 | static int s3c2412_dma_add(struct sys_device *sysdev) | 147 | static int __init s3c2412_dma_add(struct sys_device *sysdev) |
148 | { | 148 | { |
149 | s3c2410_dma_init(); | 149 | s3c2410_dma_init(); |
150 | return s3c24xx_dma_init_map(&s3c2412_dma_sel); | 150 | return s3c24xx_dma_init_map(&s3c2412_dma_sel); |
diff --git a/arch/arm/mach-s3c2440/dma.c b/arch/arm/mach-s3c2440/dma.c index f509f062e749..0b1260827ac6 100644 --- a/arch/arm/mach-s3c2440/dma.c +++ b/arch/arm/mach-s3c2440/dma.c | |||
@@ -190,7 +190,7 @@ static struct s3c24xx_dma_order __initdata s3c2440_dma_order = { | |||
190 | }, | 190 | }, |
191 | }; | 191 | }; |
192 | 192 | ||
193 | static int s3c2440_dma_add(struct sys_device *sysdev) | 193 | static int __init s3c2440_dma_add(struct sys_device *sysdev) |
194 | { | 194 | { |
195 | s3c2410_dma_init(); | 195 | s3c2410_dma_init(); |
196 | s3c24xx_dma_order_set(&s3c2440_dma_order); | 196 | s3c24xx_dma_order_set(&s3c2440_dma_order); |
diff --git a/arch/arm/mach-s3c2443/dma.c b/arch/arm/mach-s3c2443/dma.c index fc3ede82af8f..f6c006d4297b 100644 --- a/arch/arm/mach-s3c2443/dma.c +++ b/arch/arm/mach-s3c2443/dma.c | |||
@@ -162,7 +162,7 @@ static struct s3c24xx_dma_selection __initdata s3c2443_dma_sel = { | |||
162 | .map_size = ARRAY_SIZE(s3c2443_dma_mappings), | 162 | .map_size = ARRAY_SIZE(s3c2443_dma_mappings), |
163 | }; | 163 | }; |
164 | 164 | ||
165 | static int s3c2443_dma_add(struct sys_device *sysdev) | 165 | static int __init s3c2443_dma_add(struct sys_device *sysdev) |
166 | { | 166 | { |
167 | s3c24xx_dma_init(6, IRQ_S3C2443_DMA0, 0x100); | 167 | s3c24xx_dma_init(6, IRQ_S3C2443_DMA0, 0x100); |
168 | return s3c24xx_dma_init_map(&s3c2443_dma_sel); | 168 | return s3c24xx_dma_init_map(&s3c2443_dma_sel); |
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index 6d048490c559..992ca435a922 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c | |||
@@ -1372,7 +1372,7 @@ int __init s3c24xx_dma_init(unsigned int channels, unsigned int irq, | |||
1372 | return ret; | 1372 | return ret; |
1373 | } | 1373 | } |
1374 | 1374 | ||
1375 | int s3c2410_dma_init(void) | 1375 | int __init s3c2410_dma_init(void) |
1376 | { | 1376 | { |
1377 | return s3c24xx_dma_init(4, IRQ_DMA0, 0x40); | 1377 | return s3c24xx_dma_init(4, IRQ_DMA0, 0x40); |
1378 | } | 1378 | } |