Re: [PATCH] ARM: SAMSUNG: dma: Remove unnecessary code

2013-02-05 Thread Padma Venkat
Hi Arnd, On Mon, Feb 4, 2013 at 11:13 PM, Arnd Bergmann a...@arndb.de wrote: On Monday 04 February 2013, Padmavathi Venna wrote: diff --git a/arch/arm/plat-samsung/dma-ops.c b/arch/arm/plat-samsung/dma-ops.c index 71d58dd..ec0d731 100644 --- a/arch/arm/plat-samsung/dma-ops.c +++

Re: [PATCH] ARM: SAMSUNG: dma: Remove unnecessary code

2013-02-05 Thread Arnd Bergmann
On Tuesday 05 February 2013, Padma Venkat wrote: On Mon, Feb 4, 2013 at 11:13 PM, Arnd Bergmann a...@arndb.de wrote: On Monday 04 February 2013, Padmavathi Venna wrote: diff --git a/arch/arm/plat-samsung/dma-ops.c b/arch/arm/plat-samsung/dma-ops.c index 71d58dd..ec0d731 100644 ---

[PATCH v5 0/2] Adding USB 3.0 DRD-phy support for exynos5250

2013-02-05 Thread Vivek Gautam
Based on 'usb-next' Changes from v4: - Modifying function names and driver names to follow a common naming convention. usb2phy for samsung-usb2phy driver usb3phy for samsung-usb3phy driver - Changing file names samsung-usb2.c to samsung-usb2phy.c and, samsung-usb3.c to

[PATCH v5 1/2] usb: phy: samsung: Common out the generic stuff

2013-02-05 Thread Vivek Gautam
Moving register and structure definitions to header file, and keeping the generic functions to be used across multiple PHYs in common phy helper driver under SAMSUNG_USBPHY, and moving USB 2.0 PHY driver under SAMSUNG_USB2PHY. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com ---

[PATCH v5 2/2] usb: phy: samsung: Add PHY support for USB 3.0 controller

2013-02-05 Thread Vivek Gautam
Adding PHY driver support for USB 3.0 controller for Samsung's SoCs. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- drivers/usb/phy/Kconfig |8 + drivers/usb/phy/Makefile |1 + drivers/usb/phy/samsung-usb3phy.c | 349 +

[PATCH v3 0/2] ARM: Exynos5250: Enabling samsung usb phy

2013-02-05 Thread Vivek Gautam
Based on for-next of 'linux-samsung' tree. Aligned with following patches for separate PHY drivers for USB 2.0 and USB 3.0 for Samsung SoCs. [PATCH v5 1/2] usb: phy: samsung: Common out the generic stuff [PATCH v5 2/2] usb: phy: samsung: Add PHY support for USB 3.0 controller Changes from v2: -

[PATCH v3 2/2] ARM: Exynos5250: Enabling samsung-usb3phy driver

2013-02-05 Thread Vivek Gautam
Adding device node for Samsung USB 3.0 PHY controller driver on Exynos5250 along with the necessary device data to be parsed. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- arch/arm/boot/dts/exynos5250.dtsi | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff

[PATCH v2] ARM: dts: map SATA controller port to SATA PHY controller

2013-02-05 Thread Vasanth Ananthan
Changes since v1: Added a child node to sata-phy node for passing the sata phy PMU control registers base address and range. Vasanth Ananthan (1): ARM: dts: map SATA controller port to SATA PHY controller arch/arm/boot/dts/exynos5250-smdk5250.dts | 11 ---

[PATCH v2] ARM: dts: map SATA controller port to SATA PHY controller

2013-02-05 Thread Vasanth Ananthan
Adding port nodes to the sata controller node, thus mapping the ports in sata controller to the corresponding PHY controllers they are connected to. Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- arch/arm/boot/dts/exynos5250-smdk5250.dts | 11 ---

[PATCH v2 0/2] Adding SATA PHY framework and PHY controller driver

2013-02-05 Thread Vasanth Ananthan
Changes since v1: 1. Moved regs-sata.h to driver/ata/ and renamed to sata_exynos_phy.h 2. Added support for getting the sata phy PMU control register base address through device tree. Vasanth Ananthan (2): driver: ata: SATA PHY framework driver: ata: add

[PATCH v2 2/2] driver: ata: add new Exynos5250 SATA PHY controller driver

2013-02-05 Thread Vasanth Ananthan
Adding platform driver and I2C client driver for SATA PHY controller for Samsung Exynos5250. The PHY controller in Exynos5250 has both the APB interface and I2C client interface, hence it requires both a platform driver and an I2C client driver. The PHY controller's primary charecteristics are

Re: [PATCH RESEND] ARM: EXYNOS: change the name of USB ohci header

2013-02-05 Thread Alan Stern
On Tue, 5 Feb 2013, Jingoo Han wrote: On Wednesday, December 26, 2012 3:35 PM, Jingoo Han wrote This patch changes the name of USB ohci header from 'usb-exynos.h' to 'usb-ohci-exynos.h'. This is because this header file has the platdata for only Exynos ohci. Signed-off-by: Jingoo

[PATCH V6 0/4] [SCSI] ufs: Adds glue drivers to ufshcd

2013-02-05 Thread vinholikatti
From: Vinayak Holikatti vinholika...@gmail.com This patch set adds following features - Seggregate PCI specific code in ufshcd.c and corrected copyright - Adds PCI glue driver ufshcd-pci.c and ufshcd.c become core module - Adds Platform glue driver ufshcd-pltfrm.c - Update correct transfer

[PATCH V6 1/4] [SCSI] drivers/scsi/ufs: Seggregate PCI Specific Code

2013-02-05 Thread vinholikatti
From: Vinayak Holikatti vinholika...@gmail.com This patch seggregates the PCI specific code in ufshcd.c to make it ready for splitting into core ufs driver and PCI glue driver. Also copyright header modification to remove extra warranty disclaim. Reviewed-by: Arnd Bergmann a...@arndb.de

[PATCH V6 2/4] [SCSI] drivers/scsi/ufs: Separate PCI code into glue driver

2013-02-05 Thread vinholikatti
From: Vinayak Holikatti vinholika...@gmail.com This patch separates PCI code from ufshcd.c and makes it as a core driver module and adds a new file ufshcd-pci.c as PCI glue driver. Reviewed-by: Arnd Bergmann a...@arndb.de Reviewed-by: Namjae Jeon linkinj...@gmail.com Reviewed-by: Subhash

[PATCH V6 4/4] [SCSI] ufs: Correct the expected data transfersize

2013-02-05 Thread vinholikatti
From: Vinayak Holikatti vinholika...@gmail.com This patch corrects the expected data transfer size of the command UPIU. The current implementation of cmd-transfersize is wrong as it probably equal to sector size. With this implementation the transfer size is updated correctly Reported-by:

RE: [PATCH RESEND] ARM: EXYNOS: change the name of USB ohci header

2013-02-05 Thread Kukjin Kim
Alan Stern wrote: On Tue, 5 Feb 2013, Jingoo Han wrote: On Wednesday, December 26, 2012 3:35 PM, Jingoo Han wrote This patch changes the name of USB ohci header from 'usb-exynos.h' to 'usb-ohci-exynos.h'. This is because this header file has the platdata for only Exynos ohci.

Help connect s3c2410-lcd device to SMDK2443

2013-02-05 Thread Alexander Varnin
Hello. I'm trying to setup s3c2410-lcd device on SMDK2443 with 3.6 kernel. On requesting interrupt it fails with EINVAL: ~ # dmesg | grep lcd s3c2410-lcd s3c2410-lcd: cannot get irq 32 - err -22 s3c2410-lcd: probe of s3c2410-lcd failed with error -16 The interrupt is not busy by something else.

[PATCH] ARM: S3C24XX: osiris: add missing platform_device.h include

2013-02-05 Thread Heiko Stübner
The missing include led to a implcit declaration warning. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/mach-osiris.c |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-s3c24xx/mach-osiris.c b/arch/arm/mach-s3c24xx/mach-osiris.c index c2dc032..7d73626

[PATCH] ARM: S3C24XX: let S3C2412_PM select S3C2412_PM_SLEEP

2013-02-05 Thread Heiko Stübner
The code to enter sleep is used by both the s3c2412 and s3c2416 and was thus factored out into an extra config option. But it seems it was forgotten to add the appropriate select to the s3c2412 pm option, resulting in breakage when only compiling s3c2412 support. Signed-off-by: Heiko Stuebner

[PATCH 1/6] ARM: S3C24XX: move s3c244x irq init to common irq code

2013-02-05 Thread Heiko Stübner
Base for further modifications. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/Makefile |2 +- arch/arm/mach-s3c24xx/irq-s3c244x.c | 142 --- arch/arm/mach-s3c24xx/irq.c | 105 ++ 3 files changed,

[PATCH 3/6] ARM: S3C24XX: move s3c2440 irqs to common irq code

2013-02-05 Thread Heiko Stübner
Will be integrated in the following patch. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/Makefile |2 +- arch/arm/mach-s3c24xx/irq-s3c2440.c | 128 --- arch/arm/mach-s3c24xx/irq.c | 88 3 files

[PATCH 4/6] ARM: S3C24XX: integrate s3c2440 irqs into common init

2013-02-05 Thread Heiko Stübner
Now all the arch_initcalls for s3c244x are gone. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/irq.c | 46 -- 1 files changed, 13 insertions(+), 33 deletions(-) diff --git a/arch/arm/mach-s3c24xx/irq.c

[PATCH 5/6] ARM: S3C24XX: transform s3c2442 irqs into new structure

2013-02-05 Thread Heiko Stübner
Simply declare a correct mapping structure to use the common irq code. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/irq.c | 78 ++ 1 files changed, 63 insertions(+), 15 deletions(-) diff --git a/arch/arm/mach-s3c24xx/irq.c

[PATCH 6/6] ARM: S3C24XX: transform s3c2440 irqs into new structure

2013-02-05 Thread Heiko Stübner
As always a mapping structure is everything needed. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c24xx/irq.c | 196 +- 1 files changed, 61 insertions(+), 135 deletions(-) diff --git a/arch/arm/mach-s3c24xx/irq.c

[PATCH v3 0/2] Get the HDMI IP block version from device tree

2013-02-05 Thread Sean Paul
This set changes the hdmi device tree node to properly represent the version of the IP block. The first patch changes the drm hdmi driver to use the compatible field to determine which registers/functions to call, and removes the unfortunate v1.3/v1.4 naming convention. The second patch updates

[PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Sean Paul
Use the compatible string in the device tree to determine which registers/functions to use in the HDMI driver. Also changes the references from v13 to 4210 and v14 to 4212 to reflect the IP block version instead of the HDMI version. Signed-off-by: Sean Paul seanp...@chromium.org ---

[PATCH v3 2/3] ARM: Change exynos5-hdmi references to exynos4-hdmi

2013-02-05 Thread Sean Paul
With the change drm/exynos: Get HDMI version from device tree, exynos5-hdmi is no longer relevant. Update references to exynos4-hdmi and update the hdmi compatibility string to accurately reflect the hdmi driver. Signed-off-by: Sean Paul seanp...@chromium.org ---

Re: [PATCH] ARM: SAMSUNG: dma: Remove unnecessary code

2013-02-05 Thread Arnd Bergmann
On Tuesday 05 February 2013, Padma Venkat wrote: In none of my patches I have changed the pl330_filter args. This function always takes the same argument void*. In non-DT case 'enum dma_ch' was typecasted to void* and in DT case I am passing a pointer to dma_pl330_filter_args and in

Re: [GIT PULL 2/5] Samsung cleanup-s3c24xx for v3.9

2013-02-05 Thread Olof Johansson
On Mon, Feb 04, 2013 at 03:41:55PM -0800, Kukjin Kim wrote: Hi Arnd and Olof, Here is 2nd cleanup for Samsung S3C24XX stuff and based on previous pull-request branch, 'next/cleanup-header'. Basically, this patch merges mach-s3c2410, mach-s3c2412 and mach-s3c2440 into mach-s3c24xx. Note,

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Stephen Warren
n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible string in the device tree to determine which registers/functions to use in the HDMI driver. Also changes the references from v13 to 4210 and v14 to 4212 to reflect the IP block version instead of the HDMI version. diff --git

Re: [RFC] i2c: Providing hooks for i2c multimaster bus arbitration.

2013-02-05 Thread Doug Anderson
Yavaraj, On Mon, Feb 4, 2013 at 1:03 AM, Yuvaraj Kumar C D yuvaraj...@gmail.com wrote: This RFC patch is w.r.t multimaster bus arbitration which is already being discussing in the mainline. This patch provides hooks for the i2c multimaster bus arbitration and to have the arbitration

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Sean Paul
On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible string in the device tree to determine which registers/functions to use in the HDMI driver. Also changes the references from v13 to 4210 and v14 to 4212 to

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Stephen Warren
On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible string in the device tree to determine which registers/functions to use in the HDMI driver. Also changes the

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Kyungmin Park
On Wed, Feb 6, 2013 at 9:42 AM, Stephen Warren swar...@wwwdotorg.org wrote: On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible string in the device tree to determine

RE: [GIT PULL 2/5] Samsung cleanup-s3c24xx for v3.9

2013-02-05 Thread Kukjin Kim
Olof Johansson wrote: On Mon, Feb 04, 2013 at 03:41:55PM -0800, Kukjin Kim wrote: Hi Arnd and Olof, Here is 2nd cleanup for Samsung S3C24XX stuff and based on previous pull-request branch, 'next/cleanup-header'. Basically, this patch merges mach-s3c2410, mach-s3c2412 and mach-s3c2440

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Sean Paul
On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren swar...@wwwdotorg.org wrote: On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible string in the device tree to determine

Re: [GIT PULL 4/5] Samsung cleanup-s3c24xx-2 for v3.9

2013-02-05 Thread Olof Johansson
On Mon, Feb 04, 2013 at 03:42:00PM -0800, Kukjin Kim wrote: Hi Arnd and Olof, This is 4th cleanup for Samsung S3C24XX stuff, and removes plat-s3c24xx directory :-) Note, this is based on previous pull-request, 'next/irq-s3c24xx' branch. If any problems, please kindly let me know.

Re: [GIT PULL 2/5] Samsung cleanup-s3c24xx for v3.9

2013-02-05 Thread Olof Johansson
On Tue, Feb 5, 2013 at 4:54 PM, Kukjin Kim kgene@samsung.com wrote: Olof Johansson wrote: On Mon, Feb 04, 2013 at 03:41:55PM -0800, Kukjin Kim wrote: Hi Arnd and Olof, Here is 2nd cleanup for Samsung S3C24XX stuff and based on previous pull-request branch, 'next/cleanup-header'.

Re: [GIT PULL 5/5] Samsung cleanup for v3.9

2013-02-05 Thread Olof Johansson
On Mon, Feb 04, 2013 at 03:42:01PM -0800, Kukjin Kim wrote: Hi Arnd, Olof, This is for removing useless codes. Please pull it. Thanks. - Kukjin The following changes since commit 9931faca02c604c22335f5a935a501bb2ace6e20: Linux 3.8-rc3 (2013-01-09 18:59:55 -0800) are available

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Joonyoung Shim
On 02/06/2013 09:56 AM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren swar...@wwwdotorg.org wrote: On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the compatible

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread Stephen Warren
On 02/05/2013 05:56 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren swar...@wwwdotorg.org wrote: On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the

Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree

2013-02-05 Thread 김승우
On 2013년 02월 06일 09:56, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren swar...@wwwdotorg.org wrote: On 02/05/2013 05:37 PM, Sean Paul wrote: On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren swar...@wwwdotorg.org wrote: n 02/05/2013 04:42 PM, Sean Paul wrote: Use the

[RESEND][PATCH] ARM: EXYNOS: Add clocks for EXYNOS I2S and PCM I/F

2013-02-05 Thread Sangsu Park
Audio Subsystem has own clocks for I2S0 and PCM0 in all EXYNOS series. This patch add clocks for I2S0 and PCM0 I/F. Signed-off-by: Sangsu Park sangsu4u.p...@samsung.com --- arch/arm/mach-exynos/Makefile |1 + arch/arm/mach-exynos/clock-audss.c | 64

Re: [RFC] i2c: Providing hooks for i2c multimaster bus arbitration.

2013-02-05 Thread Yuvaraj Kumar
On Wed, Feb 6, 2013 at 5:48 AM, Doug Anderson diand...@chromium.org wrote: Yavaraj, On Mon, Feb 4, 2013 at 1:03 AM, Yuvaraj Kumar C D yuvaraj...@gmail.com wrote: This RFC patch is w.r.t multimaster bus arbitration which is already being discussing in the mainline. This patch provides hooks

Re: [RESEND][PATCH] ARM: EXYNOS: Add clocks for EXYNOS I2S and PCM I/F

2013-02-05 Thread Sachin Kamat
On 6 February 2013 10:51, Sangsu Park sangsu4u.p...@samsung.com wrote: Audio Subsystem has own clocks for I2S0 and PCM0 in all EXYNOS series. This patch add clocks for I2S0 and PCM0 I/F. Signed-off-by: Sangsu Park sangsu4u.p...@samsung.com --- arch/arm/mach-exynos/Makefile |1 +

RE: [RESEND][PATCH] ARM: EXYNOS: Add clocks for EXYNOS I2S and PCM I/F

2013-02-05 Thread Sangsu Park
On 6 February 2013 11:00, Sachin Kamat sachin.ka...@linaro.org wrote: On 6 February 2013 10:51, Sangsu Park sangsu4u.p...@samsung.com wrote: Audio Subsystem has own clocks for I2S0 and PCM0 in all EXYNOS series. This patch add clocks for I2S0 and PCM0 I/F. Signed-off-by: Sangsu Park

[PATCH V2] ARM: EXYNOS: Add clocks for EXYNOS I2S and PCM I/F

2013-02-05 Thread Sangsu Park
Audio Subsystem has own clocks for I2S0 and PCM0 in all EXYNOS series. This patch add clocks for I2S0 and PCM0 I/F. Signed-off-by: Sangsu Park sangsu4u.p...@samsung.com --- arch/arm/mach-exynos/Makefile |1 + arch/arm/mach-exynos/clock-audss.c | 64

Re: [RFC] i2c: Providing hooks for i2c multimaster bus arbitration.

2013-02-05 Thread Simon Glass
Hi, On Tue, Feb 5, 2013 at 9:33 PM, Yuvaraj Kumar yuvaraj...@gmail.com wrote: On Wed, Feb 6, 2013 at 10:58 AM, Yuvaraj Kumar yuvaraj...@gmail.com wrote: On Wed, Feb 6, 2013 at 5:48 AM, Doug Anderson diand...@chromium.org wrote: Yavaraj, On Mon, Feb 4, 2013 at 1:03 AM, Yuvaraj Kumar C D

[PATCH V3 0/5] Add generic DMA DT binding support

2013-02-05 Thread Padmavathi Venna
Changes since V2: - Add new filter function for DT case as suggested by Arnd - Add xlate as static function - Use newly added filter function in xlate. - Add Acked-by for some of the patches Changes since V1: - Address the review comments by Arnd Bergmann

[PATCH V3 1/5] DMA: PL330: Add new pl330 filter for DT case.

2013-02-05 Thread Padmavathi Venna
This patch adds a new pl330_dt_filter for DT case to filter the required channel based on the new filter params and modifies the old filter only for non-DT case as suggested by Arnd Bergmann. Signed-off-by: Padmavathi Venna padm...@samsung.com --- drivers/dma/pl330.c | 29

[PATCH V3 2/5] DMA: PL330: Add xlate function

2013-02-05 Thread Padmavathi Venna
Add xlate to translate the device-tree binding information into the appropriate format. The filter function requires the dma controller device and dma channel number as filter_params. Signed-off-by: Padmavathi Venna padm...@samsung.com Acked-by: Arnd Bergmann a...@arndb.de ---

[PATCH V3 3/5] DMA: PL330: Register the DMA controller with the generic DMA helpers

2013-02-05 Thread Padmavathi Venna
This patch registers the pl330 dma controller driver with the generic device tree dma helper functions. Signed-off-by: Padmavathi Venna padm...@samsung.com Acked-by: Arnd Bergmann a...@arndb.de --- drivers/dma/pl330.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff

[PATCH V3 5/5] ARM: SAMSUNG: dma: Remove unnecessary code

2013-02-05 Thread Padmavathi Venna
This patch removes the usage of DMACH_DT_PROP and dt_dmach_prop from dma code as the new generic dma dt binding support has been added. Signed-off-by: Padmavathi Venna padm...@samsung.com --- arch/arm/mach-s3c24xx/include/mach/dma.h |1 - arch/arm/mach-s3c64xx/include/mach/dma.h

[PATCH V3 4/5] ARM: dts: Add #dma-cells for generic dma binding support

2013-02-05 Thread Padmavathi Venna
This patch adds #dma-cells property to PL330 DMA controller nodes for supporting generic dma dt bindings on samsung exynos5250 platform. Signed-off-by: Padmavathi Venna padm...@samsung.com Acked-by: Arnd Bergmann a...@arndb.de --- .../devicetree/bindings/dma/arm-pl330.txt | 15

[PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h

2013-02-05 Thread Sachin Kamat
Add 'default' case to silence the following warning: arch/arm/plat-samsung/include/plat/sdhci.h:356:9: warning: switch with no cases Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/plat-samsung/include/plat/sdhci.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)

[PATCH 2/2] ARM: SAMSUNG: Silence empty switch warning in fimc-core.h

2013-02-05 Thread Sachin Kamat
Add 'default' case to silence the below warning: arch/arm/plat-samsung/include/plat/fimc-core.h:25:9: warning: switch with no cases Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/plat-samsung/include/plat/fimc-core.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)