Re: Boot failure on Arndale with next-20131105

2013-11-05 Thread Tushar Behera
gfp_mask) > bvl = bio->bi_inline_vecs; > } > > + i = 0; > bio_for_each_segment(bv, bio, iter) > - bvl[bio->bi_vcnt++] = bv; > + bvl[i++] = bv; > > bio->bi_io_vec = bvl; > bio->bi_iter.bi_idx = 0; Tested-

Boot failure on Arndale with next-20131105

2013-11-05 Thread Tushar Behera
.dep: No such file or directory FATAL: Could not load /lib/modules/3.12.0-rc5-00051-gfebca1b/modules.dep: No such file or directory -- Tushar Behera -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org

Re: [PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-11-05 Thread Tushar Behera
On 5 November 2013 13:27, Kyungmin Park wrote: > On Tue, Nov 5, 2013 at 3:29 PM, Tushar Behera > wrote: >> On 31 October 2013 21:46, Lee Jones wrote: >>> On Thu, 31 Oct 2013, Tushar Behera wrote: >>> >>>> S5M8767 chip has 3 crystal oscillators

Re: [PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-11-05 Thread Tushar Behera
On 5 November 2013 13:27, Kyungmin Park kmp...@infradead.org wrote: On Tue, Nov 5, 2013 at 3:29 PM, Tushar Behera tushar.beh...@linaro.org wrote: On 31 October 2013 21:46, Lee Jones lee.jo...@linaro.org wrote: On Thu, 31 Oct 2013, Tushar Behera wrote: S5M8767 chip has 3 crystal oscillators

Boot failure on Arndale with next-20131105

2013-11-05 Thread Tushar Behera
-gfebca1b/modules.dep: No such file or directory -- Tushar Behera -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: Boot failure on Arndale with next-20131105

2013-11-05 Thread Tushar Behera
= 0; bio_for_each_segment(bv, bio, iter) - bvl[bio-bi_vcnt++] = bv; + bvl[i++] = bv; bio-bi_io_vec = bvl; bio-bi_iter.bi_idx = 0; Tested-by: Tushar Behera tushar.beh...@linaro.org (Fixes boot failure on Exynos5250-based Arndale board

Re: [PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-11-04 Thread Tushar Behera
On 31 October 2013 21:46, Lee Jones wrote: > On Thu, 31 Oct 2013, Tushar Behera wrote: > >> S5M8767 chip has 3 crystal oscillators running at 32KHz. These are >> supported by s2mps11-clk driver. >> >> Signed-off-by: Tushar Behera >> CC: Lee Jones >

Re: [PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-11-04 Thread Tushar Behera
On 31 October 2013 21:46, Lee Jones lee.jo...@linaro.org wrote: On Thu, 31 Oct 2013, Tushar Behera wrote: S5M8767 chip has 3 crystal oscillators running at 32KHz. These are supported by s2mps11-clk driver. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Lee Jones lee.jo

[PATCH 0/5] Remove remaining instances of devm_request_and_ioremap

2013-10-31 Thread Tushar Behera
devm_request_and_ioremap is now obsolete and is replaced by devm_ioremap_resource. Update the remaining places where devm_request_and_ioremap is still used and remove its definition. The patches are based on next-20131030. Tushar Behera (5): MIPS: ralink: Use devm_ioremap_resource DRM

[PATCH 4/5] watchdog: ralink: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera CC: linux-watch...@vger.kernel.org CC: Wim Van Sebroeck --- drivers/watchdog/rt2880_wdt.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/watchdog/rt2880_wdt.c b/drivers/watchdog/rt2880_wdt.c index a9f8491..53d37fe 100644 --- a/drivers

[PATCH 5/5] lib: devres: Remove deprecated devm_request_and_ioremap

2013-10-31 Thread Tushar Behera
Now that all the users of devm_request_and_ioremap have been converted to use devm_ioremap_resource, remove the definition. Also remove the entries from Documentation. Signed-off-by: Tushar Behera CC: linux-...@vger.kernel.org CC: Rob Landley CC: Greg Kroah-Hartman --- Documentation/driver

[PATCH 2/5] DRM: Armada: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
While at it, propagate the error code. Signed-off-by: Tushar Behera CC: dri-de...@lists.freedesktop.org CC: Russell King CC: David Airlie --- drivers/gpu/drm/armada/armada_crtc.c |8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/armada

[PATCH 1/5] MIPS: ralink: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera CC: linux-m...@linux-mips.org CC: John Crispin CC: Ralf Baechle --- arch/mips/ralink/timer.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/ralink/timer.c b/arch/mips/ralink/timer.c index e49241a..2027857 100644 --- a/arch/mips

[PATCH 3/5] iommu/arm-smmu: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
While at it, propagate the error code. Signed-off-by: Tushar Behera CC: linux-arm-ker...@lists.infradead.org CC: io...@lists.linux-foundation.org CC: Will Deacon CC: Joerg Roedel --- drivers/iommu/arm-smmu.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers

[PATCH 2/4] clk: clk-s2mps11: Add support for clocks in S5M8767 MFD

2013-10-31 Thread Tushar Behera
Since clock operation within S2MPS11 and S5M8767 are similar, we can support both the devices within a single driver. Signed-off-by: Tushar Behera CC: Yadwinder Singh Brar CC: Mike Turquette --- drivers/clk/Kconfig |6 -- drivers/clk/clk-s2mps11.c |5 + 2 files changed

[PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-10-31 Thread Tushar Behera
S5M8767 chip has 3 crystal oscillators running at 32KHz. These are supported by s2mps11-clk driver. Signed-off-by: Tushar Behera CC: Lee Jones --- drivers/mfd/sec-core.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c

[PATCH 4/4] ARM: dts: Add S5M8767 clock nodes on Arndale board

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera CC: Kukjin Kim --- arch/arm/boot/dts/exynos5250-arndale.dts |7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts b/arch/arm/boot/dts/exynos5250-arndale.dts index b77a37e..34b305d 100644 --- a/arch/arm/boot/dts

[PATCH 1/4] clk: clk-s2mps11: Refactor for including support for other MFD clocks

2013-10-31 Thread Tushar Behera
The clocks in S2MPS11 and S5M8767 are managed in the same way, baring a difference in the register offset. It would be better to update existing S2MPS11 driver to support the clocks in S5M8767, rather than creating an almost duplicate driver altogether. Signed-off-by: Tushar Behera CC: Yadwinder

[PATCH 0/4] Add support for clocks in S5M8767

2013-10-31 Thread Tushar Behera
S5M8767 chip has 3 crystal oscillators which are operated in the same as the crystal oscillators in S2MPS11. Extend s2mps11-clk driver to support clocks in S5M8767. The patches are based on next-20131030. Tushar Behera (4): clk: clk-s2mps11: Refactor for including support for other MFD clocks

[PATCH 1/4] clk: clk-s2mps11: Refactor for including support for other MFD clocks

2013-10-31 Thread Tushar Behera
The clocks in S2MPS11 and S5M8767 are managed in the same way, baring a difference in the register offset. It would be better to update existing S2MPS11 driver to support the clocks in S5M8767, rather than creating an almost duplicate driver altogether. Signed-off-by: Tushar Behera tushar.beh

[PATCH 0/4] Add support for clocks in S5M8767

2013-10-31 Thread Tushar Behera
S5M8767 chip has 3 crystal oscillators which are operated in the same as the crystal oscillators in S2MPS11. Extend s2mps11-clk driver to support clocks in S5M8767. The patches are based on next-20131030. Tushar Behera (4): clk: clk-s2mps11: Refactor for including support for other MFD clocks

[PATCH 3/4] mfd: sec-core: Add cells for S5M8767-clocks

2013-10-31 Thread Tushar Behera
S5M8767 chip has 3 crystal oscillators running at 32KHz. These are supported by s2mps11-clk driver. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Lee Jones lee.jo...@linaro.org --- drivers/mfd/sec-core.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH 4/4] ARM: dts: Add S5M8767 clock nodes on Arndale board

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Kukjin Kim kgene@samsung.com --- arch/arm/boot/dts/exynos5250-arndale.dts |7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts b/arch/arm/boot/dts/exynos5250-arndale.dts index b77a37e

[PATCH 2/4] clk: clk-s2mps11: Add support for clocks in S5M8767 MFD

2013-10-31 Thread Tushar Behera
Since clock operation within S2MPS11 and S5M8767 are similar, we can support both the devices within a single driver. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Yadwinder Singh Brar yadi.b...@samsung.com CC: Mike Turquette mturque...@linaro.org --- drivers/clk/Kconfig |6

[PATCH 3/5] iommu/arm-smmu: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
While at it, propagate the error code. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-arm-ker...@lists.infradead.org CC: io...@lists.linux-foundation.org CC: Will Deacon will.dea...@arm.com CC: Joerg Roedel j...@8bytes.org --- drivers/iommu/arm-smmu.c |6 +++--- 1 file

[PATCH 2/5] DRM: Armada: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
While at it, propagate the error code. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: dri-de...@lists.freedesktop.org CC: Russell King rmk+ker...@arm.linux.org.uk CC: David Airlie airl...@linux.ie --- drivers/gpu/drm/armada/armada_crtc.c |8 +++- 1 file changed, 3 insertions

[PATCH 1/5] MIPS: ralink: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-m...@linux-mips.org CC: John Crispin blo...@openwrt.org CC: Ralf Baechle r...@linux-mips.org --- arch/mips/ralink/timer.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/ralink/timer.c b/arch/mips

[PATCH 4/5] watchdog: ralink: Use devm_ioremap_resource

2013-10-31 Thread Tushar Behera
Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-watch...@vger.kernel.org CC: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/rt2880_wdt.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/watchdog/rt2880_wdt.c b/drivers/watchdog/rt2880_wdt.c index

[PATCH 5/5] lib: devres: Remove deprecated devm_request_and_ioremap

2013-10-31 Thread Tushar Behera
Now that all the users of devm_request_and_ioremap have been converted to use devm_ioremap_resource, remove the definition. Also remove the entries from Documentation. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-...@vger.kernel.org CC: Rob Landley r...@landley.net CC: Greg

[PATCH 0/5] Remove remaining instances of devm_request_and_ioremap

2013-10-31 Thread Tushar Behera
devm_request_and_ioremap is now obsolete and is replaced by devm_ioremap_resource. Update the remaining places where devm_request_and_ioremap is still used and remove its definition. The patches are based on next-20131030. Tushar Behera (5): MIPS: ralink: Use devm_ioremap_resource DRM

Re: [PATCH] clk: Zero-initialize memory for new clock in devm_clk_register

2013-10-29 Thread Tushar Behera
On 29 October 2013 16:20, Tushar Behera wrote: > Earlier to commit 64c862a839a8 ("devres: add kernel standard devm_k.alloc > functions") devres_alloc API used to zero-initialize the devres > allocated object, but now only the devres header is zero-initialized. > >

[PATCH] clk: Zero-initialize memory for new clock in devm_clk_register

2013-10-29 Thread Tushar Behera
k, passing explicit flag __GFP_ZERO to devres_alloc in devm_clk_register to match the behaviour. Signed-off-by: Tushar Behera --- drivers/clk/clk.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 2cf2ea6..ea3f2b9 100644 --- a/d

[PATCH] clk: Zero-initialize memory for new clock in devm_clk_register

2013-10-29 Thread Tushar Behera
explicit flag __GFP_ZERO to devres_alloc in devm_clk_register to match the behaviour. Signed-off-by: Tushar Behera tushar.beh...@linaro.org --- drivers/clk/clk.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 2cf2ea6..ea3f2b9

Re: [PATCH] clk: Zero-initialize memory for new clock in devm_clk_register

2013-10-29 Thread Tushar Behera
On 29 October 2013 16:20, Tushar Behera tushar.beh...@linaro.org wrote: Earlier to commit 64c862a839a8 (devres: add kernel standard devm_k.alloc functions) devres_alloc API used to zero-initialize the devres allocated object, but now only the devres header is zero-initialized. Since

[PATCH] Documentation: mfd: Fix typo in s2mps11.txt

2013-10-28 Thread Tushar Behera
Numbers in DT scripts should be within angle brackets. Signed-off-by: Tushar Behera --- Documentation/devicetree/bindings/mfd/s2mps11.txt |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/mfd/s2mps11.txt b/Documentation/devicetree/bindings

[PATCH] Documentation: mfd: Fix typo in s2mps11.txt

2013-10-28 Thread Tushar Behera
Numbers in DT scripts should be within angle brackets. Signed-off-by: Tushar Behera tushar.beh...@linaro.org --- Documentation/devicetree/bindings/mfd/s2mps11.txt |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/mfd/s2mps11.txt b

Re: [PATCH] usb: phy: samsung-usb2: Toggle HSIC GPIO from device tree

2013-08-27 Thread Tushar Behera
On 28 August 2013 00:14, Felipe Balbi wrote: > On Tue, Aug 13, 2013 at 02:11:27PM +0530, Tushar Behera wrote: >> On 12 July 2013 12:27, Felipe Balbi wrote: >> > Hi, >> > >> > On Wed, Jul 10, 2013 at 10:42:27AM -0700, Julius Werner wrote: >> >> Hi F

Re: [PATCH] usb: phy: samsung-usb2: Toggle HSIC GPIO from device tree

2013-08-27 Thread Tushar Behera
On 28 August 2013 00:14, Felipe Balbi ba...@ti.com wrote: On Tue, Aug 13, 2013 at 02:11:27PM +0530, Tushar Behera wrote: On 12 July 2013 12:27, Felipe Balbi ba...@ti.com wrote: Hi, On Wed, Jul 10, 2013 at 10:42:27AM -0700, Julius Werner wrote: Hi Felipe, This is intended to pull down

Build failure in drivers/pinctrl/pictrl-imx.c

2013-08-22 Thread Tushar Behera
m[i], c[i]); \ ^ make[2]: *** [drivers/pinctrl/pinctrl-imx.o] Error 1 make[1]: *** [drivers/pinctrl] Error 2 make: *** [drivers] Error 2 -- Tushar Behera -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org

Build failure in drivers/pinctrl/pictrl-imx.c

2013-08-22 Thread Tushar Behera
/pinctrl-imx.o] Error 1 make[1]: *** [drivers/pinctrl] Error 2 make: *** [drivers] Error 2 -- Tushar Behera -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

[PATCH] usb: misc: usb3503: Force late initialization

2013-08-14 Thread Tushar Behera
USB3503 chip needs to be reset after the USB PHY controller has been intiliazed, otherwise it is not detected as plugged in. Currently there is no other way to ensure that USB3503 chip is probed after the USB PHY has been initialized, hence the last resort. Signed-off-by: Tushar Behera

[PATCH] usb: misc: usb3503: Force late initialization

2013-08-14 Thread Tushar Behera
USB3503 chip needs to be reset after the USB PHY controller has been intiliazed, otherwise it is not detected as plugged in. Currently there is no other way to ensure that USB3503 chip is probed after the USB PHY has been initialized, hence the last resort. Signed-off-by: Tushar Behera

Re: [PATCH] usb: phy: samsung-usb2: Toggle HSIC GPIO from device tree

2013-08-13 Thread Tushar Behera
s (reset, assert, deassert). We still need to find out the location from where we would be calling the reset function. -- Tushar Behera -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH] usb: phy: samsung-usb2: Toggle HSIC GPIO from device tree

2013-08-13 Thread Tushar Behera
the location from where we would be calling the reset function. -- Tushar Behera -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH RFC 46/51] ARM: DMA-API: better handing of DMA masks for coherent allocations

2013-08-09 Thread Tushar Behera
insertions(+), 5 deletions(-) > Tested on Arndale board with ARM_LPAE enabled. Tested-by: Tushar Behera -- Tushar Behera -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at h

Re: [PATCH RFC 46/51] ARM: DMA-API: better handing of DMA masks for coherent allocations

2013-08-09 Thread Tushar Behera
board with ARM_LPAE enabled. Tested-by: Tushar Behera tushar.beh...@linaro.org -- Tushar Behera -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please

Re: [PATCH] gpio_msm: Fix build error due to missing err.h

2013-07-24 Thread Tushar Behera
t; error: implicit declaration of function 'PTR_ERR' > [-Werror=implicit-function-declaration] > > This driver failed to compile after commit 68515bb > (gpio_msm: Convert to use devm_ioremap_resource, > 2013-06-10). > > Cc: Tushar Behera > Signed-off-by: Stephen Boyd Sorry for

Re: [PATCH] gpio_msm: Fix build error due to missing err.h

2013-07-24 Thread Tushar Behera
of function 'PTR_ERR' [-Werror=implicit-function-declaration] This driver failed to compile after commit 68515bb (gpio_msm: Convert to use devm_ioremap_resource, 2013-06-10). Cc: Tushar Behera tushar.beh...@linaro.org Signed-off-by: Stephen Boyd sb...@codeaurora.org Sorry for this. I must

[PATCH v2 2/2] clk: exynos4: Fix clock aliases for cpufreq related clocks

2013-06-20 Thread Tushar Behera
. While at it, also modify the debug messages to print the clock values appropriately. Signed-off-by: Tushar Behera --- Changes for v2: * Clocks for EXYNOS4X12 has also been modified. * Debug messages are updated to reflect the change in clock alias. * Updated commit message to better describe

[PATCH RESEND 1/2] clk: samsung: Add MUX_FA macro to pass flag and alias

2013-06-20 Thread Tushar Behera
. Signed-off-by: Tushar Behera --- drivers/clk/samsung/clk.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/clk/samsung/clk.h b/drivers/clk/samsung/clk.h index e4ad6ea..2f7dba2 100644 --- a/drivers/clk/samsung/clk.h +++ b/drivers/clk/samsung/clk.h @@ -144,6 +144,9 @@ struct

[PATCH v2 0/2] Clock update for EXYNOS4210-CPUFREQ driver

2013-06-20 Thread Tushar Behera
to include EXYNOS4X12 releated clocks. Tushar Behera (2): clk: samsung: Add MUX_FA macro to pass flag and alias clk: exynos4: Fix clock aliases for cpufreq related clocks drivers/clk/samsung/clk-exynos4.c | 21 +++-- drivers/clk/samsung/clk.h |3 +++ 2 files

[PATCH v2 0/2] Clock update for EXYNOS4210-CPUFREQ driver

2013-06-20 Thread Tushar Behera
to include EXYNOS4X12 releated clocks. Tushar Behera (2): clk: samsung: Add MUX_FA macro to pass flag and alias clk: exynos4: Fix clock aliases for cpufreq related clocks drivers/clk/samsung/clk-exynos4.c | 21 +++-- drivers/clk/samsung/clk.h |3 +++ 2 files

[PATCH RESEND 1/2] clk: samsung: Add MUX_FA macro to pass flag and alias

2013-06-20 Thread Tushar Behera
. Signed-off-by: Tushar Behera tushar.beh...@linaro.org --- drivers/clk/samsung/clk.h |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/clk/samsung/clk.h b/drivers/clk/samsung/clk.h index e4ad6ea..2f7dba2 100644 --- a/drivers/clk/samsung/clk.h +++ b/drivers/clk/samsung/clk.h @@ -144,6

[PATCH v2 2/2] clk: exynos4: Fix clock aliases for cpufreq related clocks

2013-06-20 Thread Tushar Behera
. While at it, also modify the debug messages to print the clock values appropriately. Signed-off-by: Tushar Behera tushar.beh...@linaro.org --- Changes for v2: * Clocks for EXYNOS4X12 has also been modified. * Debug messages are updated to reflect the change in clock alias. * Updated commit message

[PATCH] ARM: dts: Update range for vdd_arm on EXYNOS4412-origen board

2013-06-19 Thread Tushar Behera
EXYNOS4412 cpufreq driver requires the range of vdd_arm regulator to be from .9v to 1.35v. Since vdd_arm regulator (BUCK2 on S5M8767) has a supported range of .6v to 1.6v, the constraints are updated to match the requirement from cpufreq driver. Signed-off-by: Tushar Behera --- arch/arm/boot

[PATCH] ARM: dts: Update range for vdd_arm on EXYNOS4412-origen board

2013-06-19 Thread Tushar Behera
EXYNOS4412 cpufreq driver requires the range of vdd_arm regulator to be from .9v to 1.35v. Since vdd_arm regulator (BUCK2 on S5M8767) has a supported range of .6v to 1.6v, the constraints are updated to match the requirement from cpufreq driver. Signed-off-by: Tushar Behera tushar.beh

Re: [PATCH 2/2] clk: exynos4: Add alias for cpufreq related clocks

2013-06-18 Thread Tushar Behera
On 06/17/2013 10:20 AM, Tushar Behera wrote: > On 06/11/2013 12:23 AM, Tomasz Figa wrote: >> On Monday 10 of June 2013 09:13:11 Tushar Behera wrote: >>> On 06/08/2013 05:20 PM, Tomasz Figa wrote: >>>> On Thursday 06 of June 2013 16:52:28 Tushar Behera wrote: > >

Re: [PATCH -next] Staging: netlogic: fix missing free_netdev() on error in xlr_net_probe()

2013-06-18 Thread Tushar Behera
that this error message is redundant. There is already a similar error message within devm_ioremap_resource call. > + err = ndev->base_addr; > + goto err_gmac; > } > > res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); > -- Tushar Behera -- To uns

Re: [PATCH -next] Staging: netlogic: fix missing free_netdev() on error in xlr_net_probe()

2013-06-18 Thread Tushar Behera
devm_ioremap_resource call. + err = ndev-base_addr; + goto err_gmac; } res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); -- Tushar Behera -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH 2/2] clk: exynos4: Add alias for cpufreq related clocks

2013-06-18 Thread Tushar Behera
On 06/17/2013 10:20 AM, Tushar Behera wrote: On 06/11/2013 12:23 AM, Tomasz Figa wrote: On Monday 10 of June 2013 09:13:11 Tushar Behera wrote: On 06/08/2013 05:20 PM, Tomasz Figa wrote: On Thursday 06 of June 2013 16:52:28 Tushar Behera wrote: [ ... ] MUX_A(mout_core, mout_core

[PATCH V2 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, remove the error message as devm_ioremap_resource prints a similar error message. Signed-off-by: Tushar Behera

[PATCH V3 12/15] ASoC: spear: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
rce prints error message on failure, there is no need to print an explicit warning message. Signed-off-by: Tushar Behera CC: alsa-de...@alsa-project.org CC: Liam Girdwood CC: Mark Brown --- Changes for V3: * Rebased on for-next branch of sound/soc git tree git://git.kernel.org/pub/scm/linux/

Re: [PATCH 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/17/2013 03:35 PM, Mark Brown wrote: > On Mon, Jun 17, 2013 at 02:42:25PM +0530, Tushar Behera wrote: >> On 06/10/2013 05:05 PM, Tushar Behera wrote: >>> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >>> introduced devm_iore

[PATCH V2 6/6] pci: mvebu: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, modify mvebu_pcie_map_registers() to propagate error code. Signed-off-by: Tushar Behera CC: linux-...@vger.ker

[PATCH V2 12/15] ASoC: spear: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
rce prints error message on failure, there is no need to print an explicit warning message. Signed-off-by: Tushar Behera CC: alsa-de...@alsa-project.org CC: Liam Girdwood CC: Mark Brown --- Changes for V2: * Removed redundant print of error message from devm_ioremap_resource exit p

[PATCH V2 1/15] sparc,leon: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, also remove the error message as devm_ioremap_resource() also prints similar error message. Signed-off-by: Tus

Re: [PATCH 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: Mar

Re: [PATCH 05/15] gpio-sta2x11: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: linux-g...@vger.k

Re: [PATCH 04/15] gpio_msm: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: linux-g...@vger.ke

Re: [PATCH 03/15] mmc: mvsdio: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: linux-...@vger

Re: [PATCH 02/15] sudmac: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: Vi

Re: [PATCH 02/15] sudmac: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Vinod Koul vinod.k

Re: [PATCH 03/15] mmc: mvsdio: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-...@vger.kernel.org CC

Re: [PATCH 04/15] gpio_msm: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-g...@vger.kernel.org CC

Re: [PATCH 05/15] gpio-sta2x11: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux-g...@vger.kernel.org CC

Re: [PATCH 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: Mark Brown broo...@kernel.org

[PATCH V2 1/15] sparc,leon: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, also remove the error message as devm_ioremap_resource() also prints similar error message. Signed-off-by: Tushar Behera

[PATCH V2 12/15] ASoC: spear: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
error message on failure, there is no need to print an explicit warning message. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: alsa-de...@alsa-project.org CC: Liam Girdwood lgirdw...@gmail.com CC: Mark Brown broo...@kernel.org --- Changes for V2: * Removed redundant print of error message

[PATCH V2 6/6] pci: mvebu: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, modify mvebu_pcie_map_registers() to propagate error code. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: linux

Re: [PATCH 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
On 06/17/2013 03:35 PM, Mark Brown wrote: On Mon, Jun 17, 2013 at 02:42:25PM +0530, Tushar Behera wrote: On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use

[PATCH V3 12/15] ASoC: spear: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
error message on failure, there is no need to print an explicit warning message. Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: alsa-de...@alsa-project.org CC: Liam Girdwood lgirdw...@gmail.com CC: Mark Brown broo...@kernel.org --- Changes for V3: * Rebased on for-next branch of sound/soc

[PATCH V2 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-17 Thread Tushar Behera
Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). While at it, remove the error message as devm_ioremap_resource prints a similar error message. Signed-off-by: Tushar Behera tushar.beh

Re: [PATCH 2/2] clk: exynos4: Add alias for cpufreq related clocks

2013-06-16 Thread Tushar Behera
On 06/11/2013 12:23 AM, Tomasz Figa wrote: > On Monday 10 of June 2013 09:13:11 Tushar Behera wrote: >> On 06/08/2013 05:20 PM, Tomasz Figa wrote: >>> On Thursday 06 of June 2013 16:52:28 Tushar Behera wrote: [ ... ] >>>>MUX_A(mout_core

Re: [PATCH 2/2] clk: exynos4: Add alias for cpufreq related clocks

2013-06-16 Thread Tushar Behera
On 06/11/2013 12:23 AM, Tomasz Figa wrote: On Monday 10 of June 2013 09:13:11 Tushar Behera wrote: On 06/08/2013 05:20 PM, Tomasz Figa wrote: On Thursday 06 of June 2013 16:52:28 Tushar Behera wrote: [ ... ] MUX_A(mout_core, mout_core, mout_core_p4210, - SRC_CPU, 16, 1

Re: [PATCH v2 3/3] ARM: s5p64x0: Use common uncompress.h part for plat-samsung

2013-06-13 Thread Tushar Behera
On 06/04/2013 09:49 AM, Tushar Behera wrote: > From: Tomasz Figa > > Since uart_base can be set dynamically in arch_detect_cpu(), there is no > need to have a copy of all code locally, just to override UART base > address. > > This patch removes any duplicate code in

Re: [PATCH v2 2/3] ARM: SAMSUNG: Consolidate uncompress subroutine

2013-06-13 Thread Tushar Behera
On 06/04/2013 09:49 AM, Tushar Behera wrote: > For mach-exynos, uart_base is a pointer and the value is calculated > in the machine folder. For other machines, uart_base is defined as > a macro in platform directory. For symmetry, the uart_base macro > definition is removed and t

Re: [PATCH v2 2/3] ARM: SAMSUNG: Consolidate uncompress subroutine

2013-06-13 Thread Tushar Behera
On 06/04/2013 09:49 AM, Tushar Behera wrote: For mach-exynos, uart_base is a pointer and the value is calculated in the machine folder. For other machines, uart_base is defined as a macro in platform directory. For symmetry, the uart_base macro definition is removed and the uart_base

Re: [PATCH v2 3/3] ARM: s5p64x0: Use common uncompress.h part for plat-samsung

2013-06-13 Thread Tushar Behera
On 06/04/2013 09:49 AM, Tushar Behera wrote: From: Tomasz Figa tomasz.f...@gmail.com Since uart_base can be set dynamically in arch_detect_cpu(), there is no need to have a copy of all code locally, just to override UART base address. This patch removes any duplicate code in uncompress.h

Re: [PATCH 09/15] net: can: Convert to use devm_ioremap_resource

2013-06-12 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: > Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") > introduced devm_ioremap_resource() and deprecated the use of > devm_request_and_ioremap(). > > Signed-off-by: Tushar Behera > CC: net...

Re: [PATCH 09/15] net: can: Convert to use devm_ioremap_resource

2013-06-12 Thread Tushar Behera
On 06/10/2013 05:05 PM, Tushar Behera wrote: Commit 75096579c3ac (lib: devres: Introduce devm_ioremap_resource()) introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera tushar.beh...@linaro.org CC: net...@vger.kernel.org CC

Re: [PATCH 1/3] ARM: dts: exynos4210: Add LCD related pinctrl entries

2013-06-11 Thread Tushar Behera
On 06/11/2013 12:00 AM, Tomasz Figa wrote: > On Monday 10 of June 2013 09:40:43 Tushar Behera wrote: >> On 06/08/2013 04:16 PM, Tomasz Figa wrote: >>> Hi Tushar, Sachin, >>> >>> On Friday 07 of June 2013 16:37:13 Tushar Behera wrote: >>>> From: Sachi

Re: [PATCH 1/3] ARM: dts: exynos4210: Add LCD related pinctrl entries

2013-06-11 Thread Tushar Behera
On 06/11/2013 12:00 AM, Tomasz Figa wrote: On Monday 10 of June 2013 09:40:43 Tushar Behera wrote: On 06/08/2013 04:16 PM, Tomasz Figa wrote: Hi Tushar, Sachin, On Friday 07 of June 2013 16:37:13 Tushar Behera wrote: From: Sachin Kamat sachin.ka...@linaro.org Adds pinctrl entries required

Re: [PATCH 13/15] pci: mvebu: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
On 06/10/2013 07:59 PM, Sachin Kamat wrote: > On 10 June 2013 17:05, Tushar Behera wrote: >> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >> introduced devm_ioremap_resource() and deprecated the use of >> devm_request_and_ioremap(). >

Re: [PATCH 11/15] regulator: ti-abb: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
On 06/10/2013 05:31 PM, Sachin Kamat wrote: > On 10 June 2013 17:05, Tushar Behera wrote: >> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >> introduced devm_ioremap_resource() and deprecated the use of >> devm_request_and_ioremap(). >

Re: [PATCH 12/15] ASoC: spear: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
On 06/10/2013 05:36 PM, Sachin Kamat wrote: > On 10 June 2013 17:05, Tushar Behera wrote: >> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >> introduced devm_ioremap_resource() and deprecated the use of >> devm_request_and_ioremap(). >

Re: [PATCH 14/15] usb: phy: rcar-usb: Fix comment w.r.t. devm_ioremap_resource

2013-06-10 Thread Tushar Behera
On 06/10/2013 05:47 PM, Sergei Shtylyov wrote: > Hello. > > On 10-06-2013 15:35, Tushar Behera wrote: > [ ... ] >>* CAUTION >>* >>* Because this phy address is also mapped under OHCI/EHCI >> address area, >> - * this dri

Re: [PATCH 09/15] net: can: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
+CC: 'Greg Kroah-Hartman' On 06/10/2013 06:39 PM, Marc Kleine-Budde wrote: > On 06/10/2013 01:35 PM, Tushar Behera wrote: >> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >> introduced devm_ioremap_resource() and deprecated the use of &g

Re: [PATCH 01/15] sparc,leon: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
On 06/10/2013 05:33 PM, Sachin Kamat wrote: > On 10 June 2013 17:04, Tushar Behera wrote: >> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") >> introduced devm_ioremap_resource() and deprecated the use of >> devm_request_and_ioremap(). >

[PATCH 02/15] sudmac: Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()") introduced devm_ioremap_resource() and deprecated the use of devm_request_and_ioremap(). Signed-off-by: Tushar Behera CC: Vinod Koul CC: Dan Williams --- drivers/dma/sh/sudmac.c |6 +++--- 1 file changed, 3

[PATCH 00/15] Convert to use devm_ioremap_resource

2013-06-10 Thread Tushar Behera
peaks about devm_request_and_ioremap. Patch 15 removes the definition of devm_request_and_ioremap which should only be applied if all other pathces are merged. Tushar Behera (15): sparc,leon: Convert to use devm_ioremap_resource sudmac: Convert to use devm_ioremap_resource mmc: mvsdio: Co

<    1   2   3   4   5   6   7   8   >