[PATCH] spi: s3c64xx: fix casting warning

2013-07-17 Thread Jingoo Han
sdd-ops-request is unsigned int, not unsigned long. Thus, (void *) is converted to (unsigned long *)(unsigned long), in order to fix possible sparse warnings. Signed-off-by: Jingoo Han jg1@samsung.com Cc: Joe Perches j...@perches.com --- drivers/spi/spi-s3c64xx.c |8 1 file

[PATCH v2] spi: s3c64xx: fix casting warning

2013-07-17 Thread Jingoo Han
sdd-ops-request is unsigned int, not unsigned long. Also, sdd-rx_dma.ch is a 'struct dma_chan *'. Thus, (void *) is converted to (struct dma_chan *)(unsigned long), in order to fix possible sparse warnings. Signed-off-by: Jingoo Han jg1@samsung.com Cc: Joe Perches j...@perches.com --- Changes

Re: [PATCH v2] spi: s3c64xx: fix casting warning

2013-07-17 Thread Mark Brown
On Wed, Jul 17, 2013 at 05:54:11PM +0900, Jingoo Han wrote: sdd-ops-request is unsigned int, not unsigned long. Also, sdd-rx_dma.ch is a 'struct dma_chan *'. Thus, (void *) is converted to (struct dma_chan *)(unsigned long), in order to fix possible sparse warnings. Applied, though only the

[PATCH 2/2] clk: exynos4: Remove unused external clock registration function

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org As the comment says exynos4_clk_register_fixed_ext() was only used by non-DT platforms. Since Exynos is now DT only it is no longer referenced and can be removed. Signed-off-by: Mark Brown broo...@linaro.org --- drivers/clk/samsung/clk-exynos4.c | 14

[PATCH 1/2] clk: samsung: Staticise non-exported symbols

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org This avoids polluting the global namespace and silences lots of sparse warnings. The change pushes us over 80 columns a lot but I couldn't see a tasteful place to break the lines as-is. Signed-off-by: Mark Brown broo...@linaro.org ---

[PATCH 1/4] ARM: dts: Hook up IRQ for PMIC on Arndale

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org The out of tree code configures a pullup on the line indicating that it is an active low interrupt. Signed-off-by: Mark Brown broo...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts | 3 +++ 1 file changed, 3 insertions(+) diff --git

[PATCH 2/4] ARM: dts: Put Arndale fixed voltage regulators on a simple-bus

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org Fixed voltage regulators (and other similar free standing things) are supposed to go on a simple-bus for DT correctness reasons. Signed-off-by: Mark Brown broo...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts | 28 +--- 1

[PATCH 4/4] ARM: dts: Add WM1811A audio CODEC to Arndale bindings

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org The default audio module for the Arndale has a WM1811A on it. Add this to the device tree bindings. Signed-off-by: Mark Brown broo...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts | 17 - 1 file changed, 16 insertions(+), 1

[PATCH 3/4] ARM: dts: Hook up supplies for Arndale S5M8767

2013-07-17 Thread Mark Brown
From: Mark Brown broo...@linaro.org As part of this add nodes for the main wall supply as well as bucks 7 and 8 which are used to drop that down for several of the LDOs. Signed-off-by: Mark Brown broo...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts | 35

Re: [PATCH 1/3] ARM: EXYNOS: remove non-working AFTR mode support

2013-07-17 Thread Daniel Lezcano
On 07/11/2013 03:14 PM, Bartlomiej Zolnierkiewicz wrote: Hi, On Friday, June 28, 2013 11:47:49 PM Daniel Lezcano wrote: On 06/28/2013 06:27 PM, Bartlomiej Zolnierkiewicz wrote: On Friday, June 28, 2013 01:20:09 PM Daniel Lezcano wrote: On 06/28/2013 12:11 PM, Tomasz Figa wrote: Hi

Re: [PATCH 1/3] ARM: EXYNOS: remove non-working AFTR mode support

2013-07-17 Thread Lorenzo Pieralisi
On Wed, Jul 17, 2013 at 01:57:30PM +0100, Daniel Lezcano wrote: On 07/11/2013 03:14 PM, Bartlomiej Zolnierkiewicz wrote: Hi, On Friday, June 28, 2013 11:47:49 PM Daniel Lezcano wrote: On 06/28/2013 06:27 PM, Bartlomiej Zolnierkiewicz wrote: On Friday, June 28, 2013 01:20:09 PM

Re: [PATCH 1/3] ARM: EXYNOS: remove non-working AFTR mode support

2013-07-17 Thread Tomasz Figa
Hi, On Wednesday 17 of July 2013 14:31:23 Lorenzo Pieralisi wrote: On Wed, Jul 17, 2013 at 01:57:30PM +0100, Daniel Lezcano wrote: On 07/11/2013 03:14 PM, Bartlomiej Zolnierkiewicz wrote: Hi, On Friday, June 28, 2013 11:47:49 PM Daniel Lezcano wrote: On 06/28/2013 06:27 PM,

Re: [PATCH 1/2] clk: samsung: Staticise non-exported symbols

2013-07-17 Thread Sachin Kamat
On 17 July 2013 16:29, Mark Brown broo...@kernel.org wrote: From: Mark Brown broo...@linaro.org This avoids polluting the global namespace and silences lots of sparse warnings. The change pushes us over 80 columns a lot but I couldn't see a tasteful place to break the lines as-is.

Re: [PATCH 2/2] clk: exynos4: Remove unused external clock registration function

2013-07-17 Thread Sachin Kamat
On 17 July 2013 16:29, Mark Brown broo...@kernel.org wrote: From: Mark Brown broo...@linaro.org As the comment says exynos4_clk_register_fixed_ext() was only used by non-DT platforms. Since Exynos is now DT only it is no longer referenced and can be removed. Signed-off-by: Mark Brown

Re: Re: [PATCH 1/3] ARM: EXYNOS: remove non-working AFTR mode support

2013-07-17 Thread Bartlomiej Zolnierkiewicz
On Wednesday, July 17, 2013 02:57:30 PM Daniel Lezcano wrote: On 07/11/2013 03:14 PM, Bartlomiej Zolnierkiewicz wrote: Hi, On Friday, June 28, 2013 11:47:49 PM Daniel Lezcano wrote: On 06/28/2013 06:27 PM, Bartlomiej Zolnierkiewicz wrote: On Friday, June 28, 2013 01:20:09 PM Daniel