Skip to content

Commit 5d5474d

Browse files
committed
Merge branch 'v3.5-samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into fixes
* 'v3.5-samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung: ARM: EXYNOS: Fix EXYNOS_DEV_DMA Kconfig entry ARM: SAMSUNG: Fix for S3C2412 EBI memory mapping ARM: SAMSUNG: Should check for IS_ERR(clk) instead of NULL
2 parents 5ae95ae + 58c553d commit 5d5474d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

arch/arm/mach-exynos/Kconfig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ config MACH_SMDKV310
212212
select EXYNOS_DEV_SYSMMU
213213
select EXYNOS4_DEV_AHCI
214214
select SAMSUNG_DEV_KEYPAD
215-
select EXYNOS4_DEV_DMA
215+
select EXYNOS_DEV_DMA
216216
select SAMSUNG_DEV_PWM
217217
select EXYNOS4_DEV_USB_OHCI
218218
select EXYNOS4_SETUP_FIMD0
@@ -264,7 +264,7 @@ config MACH_UNIVERSAL_C210
264264
select S5P_DEV_ONENAND
265265
select S5P_DEV_TV
266266
select EXYNOS_DEV_SYSMMU
267-
select EXYNOS4_DEV_DMA
267+
select EXYNOS_DEV_DMA
268268
select EXYNOS_DEV_DRM
269269
select EXYNOS4_SETUP_FIMD0
270270
select EXYNOS4_SETUP_I2C1
@@ -303,7 +303,7 @@ config MACH_NURI
303303
select S5P_DEV_MFC
304304
select S5P_DEV_USB_EHCI
305305
select S5P_SETUP_MIPIPHY
306-
select EXYNOS4_DEV_DMA
306+
select EXYNOS_DEV_DMA
307307
select EXYNOS_DEV_DRM
308308
select EXYNOS4_SETUP_FIMC
309309
select EXYNOS4_SETUP_FIMD0
@@ -341,7 +341,7 @@ config MACH_ORIGEN
341341
select SAMSUNG_DEV_PWM
342342
select EXYNOS_DEV_DRM
343343
select EXYNOS_DEV_SYSMMU
344-
select EXYNOS4_DEV_DMA
344+
select EXYNOS_DEV_DMA
345345
select EXYNOS4_DEV_USB_OHCI
346346
select EXYNOS4_SETUP_FIMD0
347347
select EXYNOS4_SETUP_SDHCI

arch/arm/plat-samsung/include/plat/map-s3c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define S3C24XX_VA_WATCHDOG S3C_VA_WATCHDOG
2323

2424
#define S3C2412_VA_SSMC S3C_ADDR_CPU(0x00000000)
25-
#define S3C2412_VA_EBI S3C_ADDR_CPU(0x00010000)
25+
#define S3C2412_VA_EBI S3C_ADDR_CPU(0x00100000)
2626

2727
#define S3C2410_PA_UART (0x50000000)
2828
#define S3C24XX_PA_UART S3C2410_PA_UART

arch/arm/plat-samsung/include/plat/watchdog-reset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static inline void arch_wdt_reset(void)
2525

2626
__raw_writel(0, S3C2410_WTCON); /* disable watchdog, to be safe */
2727

28-
if (s3c2410_wdtclk)
28+
if (!IS_ERR(s3c2410_wdtclk))
2929
clk_enable(s3c2410_wdtclk);
3030

3131
/* put initial values into count and data */

0 commit comments

Comments
 (0)