diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-s3c2410/include/mach/dma.h | 10 | ||||
-rw-r--r-- | arch/arm/mach-s3c64xx/include/mach/dma.h | 2 | ||||
-rw-r--r-- | arch/arm/plat-samsung/include/plat/dma-pl330.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-s3c2410/include/mach/dma.h b/arch/arm/mach-s3c2410/include/mach/dma.h index e61a91f88c52..4e485bab66de 100644 --- a/arch/arm/mach-s3c2410/include/mach/dma.h +++ b/arch/arm/mach-s3c2410/include/mach/dma.h | |||
@@ -50,6 +50,11 @@ enum dma_ch { | |||
50 | DMACH_MAX, /* the end entry */ | 50 | DMACH_MAX, /* the end entry */ |
51 | }; | 51 | }; |
52 | 52 | ||
53 | static inline bool samsung_dma_has_circular(void) | ||
54 | { | ||
55 | return false; | ||
56 | } | ||
57 | |||
53 | static inline bool samsung_dma_is_dmadev(void) | 58 | static inline bool samsung_dma_is_dmadev(void) |
54 | { | 59 | { |
55 | return false; | 60 | return false; |
@@ -202,9 +207,4 @@ struct s3c2410_dma_chan { | |||
202 | 207 | ||
203 | typedef unsigned long dma_device_t; | 208 | typedef unsigned long dma_device_t; |
204 | 209 | ||
205 | static inline bool s3c_dma_has_circular(void) | ||
206 | { | ||
207 | return false; | ||
208 | } | ||
209 | |||
210 | #endif /* __ASM_ARCH_DMA_H */ | 210 | #endif /* __ASM_ARCH_DMA_H */ |
diff --git a/arch/arm/mach-s3c64xx/include/mach/dma.h b/arch/arm/mach-s3c64xx/include/mach/dma.h index 49c3a53135d4..74fdf25c9042 100644 --- a/arch/arm/mach-s3c64xx/include/mach/dma.h +++ b/arch/arm/mach-s3c64xx/include/mach/dma.h | |||
@@ -58,7 +58,7 @@ enum dma_ch { | |||
58 | DMACH_MAX /* the end */ | 58 | DMACH_MAX /* the end */ |
59 | }; | 59 | }; |
60 | 60 | ||
61 | static __inline__ bool s3c_dma_has_circular(void) | 61 | static inline bool samsung_dma_has_circular(void) |
62 | { | 62 | { |
63 | return true; | 63 | return true; |
64 | } | 64 | } |
diff --git a/arch/arm/plat-samsung/include/plat/dma-pl330.h b/arch/arm/plat-samsung/include/plat/dma-pl330.h index 9a1dadb0218e..2e55e5958674 100644 --- a/arch/arm/plat-samsung/include/plat/dma-pl330.h +++ b/arch/arm/plat-samsung/include/plat/dma-pl330.h | |||
@@ -89,7 +89,7 @@ struct s3c2410_dma_client { | |||
89 | char *name; | 89 | char *name; |
90 | }; | 90 | }; |
91 | 91 | ||
92 | static inline bool s3c_dma_has_circular(void) | 92 | static inline bool samsung_dma_has_circular(void) |
93 | { | 93 | { |
94 | return true; | 94 | return true; |
95 | } | 95 | } |