diff options
Diffstat (limited to 'arch/arm/plat-samsung/dev-usb-hsotg.c')
-rw-r--r-- | arch/arm/plat-samsung/dev-usb-hsotg.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/dev-usb-hsotg.c b/arch/arm/plat-samsung/dev-usb-hsotg.c index e2f604b51c86..33a844ab6917 100644 --- a/arch/arm/plat-samsung/dev-usb-hsotg.c +++ b/arch/arm/plat-samsung/dev-usb-hsotg.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/dma-mapping.h> | ||
17 | 18 | ||
18 | #include <mach/irqs.h> | 19 | #include <mach/irqs.h> |
19 | #include <mach/map.h> | 20 | #include <mach/map.h> |
@@ -33,9 +34,15 @@ static struct resource s3c_usb_hsotg_resources[] = { | |||
33 | }, | 34 | }, |
34 | }; | 35 | }; |
35 | 36 | ||
37 | static u64 s3c_hsotg_dmamask = DMA_BIT_MASK(32); | ||
38 | |||
36 | struct platform_device s3c_device_usb_hsotg = { | 39 | struct platform_device s3c_device_usb_hsotg = { |
37 | .name = "s3c-hsotg", | 40 | .name = "s3c-hsotg", |
38 | .id = -1, | 41 | .id = -1, |
39 | .num_resources = ARRAY_SIZE(s3c_usb_hsotg_resources), | 42 | .num_resources = ARRAY_SIZE(s3c_usb_hsotg_resources), |
40 | .resource = s3c_usb_hsotg_resources, | 43 | .resource = s3c_usb_hsotg_resources, |
44 | .dev = { | ||
45 | .dma_mask = &s3c_hsotg_dmamask, | ||
46 | .coherent_dma_mask = DMA_BIT_MASK(32), | ||
47 | }, | ||
41 | }; | 48 | }; |