[PATCH] ARM: dts: am4372.dtsi: disable rfbi

2015-06-30 Thread Tomi Valkeinen
When DSS nodes were added to am4372.dtsi, the rfbi node was not marked as disabled. This should have been done, as the rule of thumb is to disable all DSS nodes that are not used, and especially rfbi, as we don't have a driver for rfbi. Signed-off-by: Tomi Valkeinen tomi.valkei...@ti.com ---

[PATCH] ARM: OMAP2: Delete unnecessary checks before three function calls

2015-06-30 Thread SF Markus Elfring
From: Markus Elfring elfr...@users.sourceforge.net Date: Tue, 30 Jun 2015 14:00:16 +0200 The functions clk_disable(), of_node_put() and omap_device_delete() test whether their argument is NULL and then return immediately. Thus the test around the call is not needed. This issue was detected by

Re: [PATCH] drm/tilcdc: Implement dma-buf support for tilcdc

2015-06-30 Thread Laurent Pinchart
Hi Jyri, Thank you for the patch. On Tuesday 30 June 2015 13:30:55 Jyri Sarha wrote: There is nothing special about tilcdc HW when the video memory is concerned. Just using the standard drm helpers for implementation is enough. Signed-off-by: Jyri Sarha jsa...@ti.com This looks simple, I

Re: n900 in 4.2-rc0: repeating oopses

2015-06-30 Thread Pali Rohár
On Tuesday 30 June 2015 11:24:04 Pavel Machek wrote: Hi! Just tried booting 4.2-rc0 on n900 (commit 4a10a91756ef381bced7b88cfb9232f660b92d93) and it is broken. Previous -rc0 version worked. This time, there's some output on console, but too fast for me to read. It seems oopses

[PATCH] drm/tilcdc: Implement dma-buf support for tilcdc

2015-06-30 Thread Jyri Sarha
There is nothing special about tilcdc HW when the video memory is concerned. Just using the standard drm helpers for implementation is enough. Signed-off-by: Jyri Sarha jsa...@ti.com --- drivers/gpu/drm/tilcdc/tilcdc_drv.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff

[RFC] Connecting SD Card to MMC3 on OMAP4

2015-06-30 Thread Michael Allwright
Hi, I'm having some difficulty configuring an SD card on MMC3 on the OMAP4 platform (mainline kernel 4.0.5 stable). I added some dev_info statements inside drivers/mmc/host/omap_hsmmc.c to see what was happening. I get the following messages in my kernel log: [2.337249] omap_hsmmc

Re: [PATCH] gpio: omap: prevent module from being unloaded while in use

2015-06-30 Thread Alexandre Courbot
On Fri, Jun 26, 2015 at 12:13 AM, Grygorii Strashko grygorii.stras...@ti.com wrote: OMAP GPIO driver allowed to be built as loadable module, but it doesn't set owner field in GPIO chip structure. As result, module_get/put() API is not working and it's possible to unload OMAP driver while in

Re: [PATCH REPOST] gpio: omap: use raw locks for locking

2015-06-30 Thread Sebastian Andrzej Siewior
On 06/30/2015 12:55 PM, Grygorii Strashko wrote: Hi Sebastian, All, Hi Grygorii, The problem here is that OMAPs code implemented using PM runtime based approach and PM runtime is used everywhere. We don't see warnings form other drivers just because their HW IRQ handlers forced to be

Re: [PATCH] gpio: omap: use raw locks for locking

2015-06-30 Thread Sebastian Andrzej Siewior
On 06/30/2015 08:45 AM, Linus Walleij wrote: This doesn't apply to the current development tree. it has been pointed out to me. Can you rebase this patch in Torvalds' HEAD, add Javier's ACK and resend? I will do it once I'm done roasted :) Please put me on the To: line, I have no time to

[PATCH] ASoC: omap: Fix typo in config option description

2015-06-30 Thread Nik Nyby
This fixes a typo in the description for SND_OMAP_SOC_HDMI_AUDIO. Signed-off-by: Nik Nyby niko...@gnu.org --- sound/soc/omap/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index 30d0109..5185a38 100644 ---

Re: [PATCH] gpio: omap: use raw locks for locking

2015-06-30 Thread Linus Walleij
On Thu, Feb 12, 2015 at 5:10 PM, Sebastian Andrzej Siewior bige...@linutronix.de wrote: This patch converts gpio_bank.lock from a spin_lock into a raw_spin_lock. The call path to access this lock is always under a raw_spin_lock, for instance - __setup_irq() holds desc-lock with irq off +

Re: n900 in 4.2-rc0: repeating oopses

2015-06-30 Thread Pavel Machek
Hi! Just tried booting 4.2-rc0 on n900 (commit 4a10a91756ef381bced7b88cfb9232f660b92d93) and it is broken. Previous -rc0 version worked. This time, there's some output on console, but too fast for me to read. It seems oopses happen before mounting root. If you have serial console, they

Re: [PATCH REPOST] gpio: omap: use raw locks for locking

2015-06-30 Thread Grygorii Strashko
Hi Sebastian, All, On 06/22/2015 10:08 AM, Tony Lindgren wrote: * Javier Martinez Canillas jav...@dowhile0.org [150619 14:57]: On Fri, Jun 19, 2015 at 7:42 PM, santosh shilimkar santosh.shilim...@oracle.com wrote: On 6/19/2015 10:06 AM, Sebastian Andrzej Siewior wrote: This patch converts