[PATCH 1/3] ARM: SAMSUNG: Add config() function in DMA common operations

2012-06-05 Thread Boojin Kim
This patch adds config() that configures DMA transmit option. This function was originally included in request(). But, Some DMA client driver requires to change the configuration after request(). So, This patch picks up it from request(). Signed-off-by: Boojin Kim boojin@samsung.com ---

[PATCH 2/3] spi: Add the use of DMA config operation

2012-06-05 Thread Boojin Kim
Config operation is separated from request operation in DMA common operation. Because spi driver can change the DMA config for every transfer. So this patch is using the separated DMA config operation. Signed-off-by: Boojin Kim boojin@samsung.com Signed-off-by: Kyoungil Kim

[PATCH 3/3] ASoC: follow the updated samsung DMA common operations

2012-06-05 Thread Boojin Kim
This patch uses config() function to configure DMA transmit options. Signed-off-by: Boojin Kim boojin@samsung.com --- sound/soc/samsung/dma.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/sound/soc/samsung/dma.c b/sound/soc/samsung/dma.c index

[PATCH] NFC: Driver for SAMSUNG S3FHRN2 NFC Chip.

2012-06-05 Thread 이운기
This is a driver for the S3FHRN2 NFC device. the driver is just a proxy getting SHDLC/HCI frames from a userspace stack. Signed-off-by: WoonKi Lee woonki84@samsung.com --- drivers/nfc/Kconfig |8 + drivers/nfc/Makefile|1 + drivers/nfc/s3fhrn2_i2c.c | 594

Re: [PATCH] NFC: Driver for SAMSUNG S3FHRN2 NFC Chip.

2012-06-05 Thread Marcel Holtmann
Hi, This is a driver for the S3FHRN2 NFC device. the driver is just a proxy getting SHDLC/HCI frames from a userspace stack. snip + + info-miscdev.minor = MISC_DYNAMIC_MINOR; + info-miscdev.name = S3FHRN2_DRIVER_NAME; + info-miscdev.fops = s3fhrn2_fops; +

Re: [PATCH 3/3] gpio: exynos4: skip gpiolib registration if pinctrl driver is used

2012-06-05 Thread Linus Walleij
On Thu, May 24, 2012 at 1:47 AM, Thomas Abraham thomas.abra...@linaro.org wrote: Pinctrl driver, when enabled, registers all the gpio pins and hence the registration of gpio pins by this driver can be skipped. Signed-off-by: Thomas Abraham thomas.abra...@linaro.org Acked-by: Linus Walleij