[PATCH] spi: Add spi-s3c64xx driver dependency on ARCH_EXYNOS

2012-02-03 Thread Kyoungil Kim
EXYNOS4 and EXYNOS5 commonly use the spi-s3c64xx driver. So ARCH_EXYNOS covering ARCH_EXYNOS4 and ARCH_EXYNOS5 is better. Signed-off-by: Kyoungil Kim --- drivers/spi/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index

Re: [PATCH 1/4] [SCSI] ufshcd: UFS Host controller driver

2012-02-03 Thread Santosh Y
On Fri, Feb 3, 2012 at 8:49 PM, Arnd Bergmann wrote: > On Thursday 02 February 2012, Vinayak Holikatti wrote: >> From: Santosh Yaraganavi >> >> This patch adds support for Universal Flash Storage(UFS) >> host controllers. The UFS host controller driver >> includes host controller initialization m

Re: [PATCH 02/13] ARM: SAMSUNG: allow the configuration of KERNEL HZ in plat-samsung

2012-02-03 Thread Russell King - ARM Linux
On Fri, Jan 27, 2012 at 10:44:20AM +0900, Kukjin Kim wrote: > > Cc: Russell King > Signed-off-by: Kukjin Kim This patch really needs some kind of explanation. It's far from obvious from the casual reader why moving from a fixed value of 200Hz for the kernel tick rate to a range from 32 to 1024

Re: [PATCH 1/4] [SCSI] ufshcd: UFS Host controller driver

2012-02-03 Thread Arnd Bergmann
On Thursday 02 February 2012, Vinayak Holikatti wrote: > From: Santosh Yaraganavi > > This patch adds support for Universal Flash Storage(UFS) > host controllers. The UFS host controller driver > includes host controller initialization method. > > The Initialization process involves following st

[PATCH 2/2] ARM: EXYNOS5: Add support SPI for EXYNOS5250

2012-02-03 Thread 김경일
This patch adds clocks, gpio configs and platform devices for EXYNOS5 SPI. And also the spi clock and gpio setup are added in the smdk5250_machine_init. Signed-off-by: Kyoungil Kim --- arch/arm/mach-exynos/clock-exynos5.c | 89 +++ arch/arm/mach-exynos/include/mach/map.

[PATCH 1/2] ARM: EXYNOS5: To use common config for EXYNOS4 and EXYNOS5 SPI

2012-02-03 Thread 김경일
The naming EXYNOS4 is changed to EXYNOS for using shared SPI config of EXYNOS4 and EXYNOS5. And S3C64XX_DEV_SPIn configs are added to MACH_SMDK5250 config to use SPI on the EYXNOS5250. Signed-off-by: Kyoungil Kim --- arch/arm/mach-exynos/Kconfig |6 +- arch/arm/mach-exy

[PATCH] serial: samsung: Add support 4M baudrate for samsung serial

2012-02-03 Thread 김경일
At getting the baudrate, the max baudrate parameter value is changed to 4M. So samsung serial can support upto 4M baudrate. Signed-off-by: Kyoungil Kim --- drivers/tty/serial/samsung.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/tty/serial/samsung.c b/driver