linux 4.2-rc1 broken Nokia N900

2015-07-11 Thread Pali Rohár
Hello, now I tested 4.2-rc1 release on Nokia N900 and couple of drivers are broken and cause kernel oops... Basically wifi, touchscreen and rtc drivers not working... Here are some relevant snippets form dmesg: [ 13.933959] Unhandled fault: external abort on non-linefetch (0x1028) at

Re: [PATCH v2 6/7] crypto: omap-aes: Add support for GCM mode

2015-07-11 Thread Herbert Xu
On Fri, Jul 10, 2015 at 07:39:35PM +0530, Lokesh Vutla wrote: If you don't mind can you elaborate more on the usage of rctx and ctx in the driver? The ctx is a property of the tfm and it's shared by all users of that tfm. So it must not be written to unless you use locking. The reqeust

Re: [PATCH 0/3] omap_hsmmc: Fix card enumeration failure on

2015-07-11 Thread R, Vignesh
On 6/16/2015 4:07 PM, Vignesh R wrote: Hi, When using omap_hsmmc driver, if sd-card repeatedly plug unplugged multiple times quickly, card enumeration stops after few iterations. This can be easily reproduced on DRA74X EVM which uses omap_hsmmc driver. This patch series addresses the

[PATCH 1/2] ARM: OMAP2+: sparse: add missing static declaration

2015-07-11 Thread Sekhar Nori
Add missing static declaration for file local variables. This fixes sparse warnings of type: arch/arm/mach-omap2/omap_hwmod_81xx_data.c:491:26: warning: symbol 'dm81xx_alwon_l3_slow__gpmc' was not declared. Should it be static? Signed-off-by: Sekhar Nori nsek...@ti.com ---

[PATCH 0/2] ARM: OMAP2+: sparse fixes

2015-07-11 Thread Sekhar Nori
Hi Tony, Here are some sparse fixes for mach-omap2. After this series mach-omap2 is sparse clean. Thanks, Sekhar Sekhar Nori (2): ARM: OMAP2+: sparse: add missing static declaration ARM: OMAP2+: sparse: add missing function declarations arch/arm/mach-omap2/omap-mpuss-lowpower.c |

[PATCH 2/2] ARM: OMAP2+: sparse: add missing function declarations

2015-07-11 Thread Sekhar Nori
omap3xxx_restart() and omap44xx_restart() are global functions declared in common.h. Include this file in omap3-restart.c and omap4-restart.c to prevent sparse warnings of type: arch/arm/mach-omap2/omap4-restart.c:22:6: warning: symbol 'omap44xx_restart' was not declared. Should it be static?