halo

2015-08-22 Thread barr lewis
let us talk -- To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 2/7] arm: dts: exynos: add vbus regulator to USB2 phy nodes

2015-08-22 Thread Krzysztof Kozlowski
W dniu 21.08.2015 o 21:38, Marek Szyprowski pisze: Exynos USB2 PHY driver now supports VBUS regulator, so add it to all boards which have it available. This also fixes commit 7eec1266751bd3a25e35ce88686634c768fedc24 (ARM: dts: Add Maxim 77693 PMIC to exynos4412-trats2), which added new

[PATCH 00/11] fix error return code

2015-08-22 Thread Julia Lawall
The complate semantic patch that finds this problem is as follows: (http://coccinelle.lip6.fr/) // smpl @ok exists@ identifier f,ret,i; expression e; constant c; @@ // identify a function that returns a negative return value at least once. f(...) { ... when any ( return -c@i; | ret = -c@i; ...

Re: [PATCH 3/7] regulators: max77693: register driver earlier to avoid deferred probe

2015-08-22 Thread Krzysztof Kozlowski
W dniu 21.08.2015 o 21:38, Marek Szyprowski pisze: MAX77693 based regulators are used by USB gadget subsystem, which doesn't support deferred probe, so the driver should be registered before USB gadget drivers get probed. Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com ---

Re: CPUIdle for Exynos5422 Odroid-XU3/XU4 boards.

2015-08-22 Thread Krzysztof Kozlowski
2015-08-21 16:21 GMT+09:00 Javier Martinez Canillas jav...@osg.samsung.com: [Adding Przemyslaw Marczak who was working on porting Odroid BL1/BL2/SPL] Hello, On 08/21/2015 05:59 AM, Krzysztof Kozlowski wrote: On 21.08.2015 12:41, Anand Moon wrote: Hi Krzysztof, On 21 August 2015 at 06:25,

Re: [PATCH 2/4 RESEND v2] spi: s3c64xx: extend driver to make full use of runtime PM autosuspend

2015-08-22 Thread Krzysztof Kozlowski
W dniu 22.08.2015 o 02:29, Heiner Kallweit pisze: Extend the driver to make full use of runtime PM autosuspend. Before only the SPI core was instructed to use autosuspend by setting master-auto_runtime_pm. Nevertheless due to the missing pm_runtime_use_autosuspend call autosuspend wasn't

[PATCH 08/11] drm/exynos: mic: fix error return code

2015-08-22 Thread Julia Lawall
Propagate error code on failure. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // smpl @@ identifier ret; expression e1,e2; @@ ( if (\(ret 0\|ret != 0\)) { ... return ret; } | ret = 0 ) ... when != ret = e1 when != ret