Re: [PATCH 5/7] ARM: EXYNOS4: Use generic DMA PL330 driver

2011-07-05 Thread Alim Akhtar
On Mon, Jul 4, 2011 at 5:48 PM, Kukjin Kim kgene@samsung.com wrote: From: Boojin Kim boojin@samsung.com This patch makes EXYNOS4 use DMA PL330 driver on DMADEVICE. EXYNOS4 uses DMA generic API instead of SAMSUNG specific S3C-PL330 API. Signed-off-by: Boojin Kim

Re: [PATCH 5/7] ARM: EXYNOS4: Use generic DMA PL330 driver

2011-07-05 Thread Sangwook Lee
@@ -47,6 +47,11 @@ static struct clk clk_sclk_usbphy1 = {        .id             = -1,  }; +static struct clk dummy_apb_pclk = { +       .name           = apb_pclk, +       .id             = -1, +}; + What is the need to creating dummy_apb_pclk ? I guess this is right, because amba

[PATCH 5/7] ARM: EXYNOS4: Use generic DMA PL330 driver

2011-07-04 Thread Kukjin Kim
From: Boojin Kim boojin@samsung.com This patch makes EXYNOS4 use DMA PL330 driver on DMADEVICE. EXYNOS4 uses DMA generic API instead of SAMSUNG specific S3C-PL330 API. Signed-off-by: Boojin Kim boojin@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com ---