[RFC PATCH v4] Consolidate SRAM support
From: Russell King - ARM Linux <hidden>
Date: 2011-05-31 21:21:42
Also in:
linux-omap
From: Russell King - ARM Linux <hidden>
Date: 2011-05-31 21:21:42
Also in:
linux-omap
On Tue, May 31, 2011 at 10:39:48PM +0530, Nori, Sekhar wrote:
I also found some check patch errors. Feel free to merge the attached patch.
And this introduces another style issue...
diff --git a/arch/arm/plat-mxc/include/mach/iram.h b/arch/arm/plat-mxc/include/mach/iram.h index 8279c47..aae5e35 100644 --- a/arch/arm/plat-mxc/include/mach/iram.h +++ b/arch/arm/plat-mxc/include/mach/iram.h@@ -31,7 +31,7 @@ static inline void *iram_alloc(size_t size, phys_addr_t *phys) *phys = gen_pool_virt_to_phys(iram_pool, addr); - return (void*)addr; + return (void *) addr;
The style here is: return (void *)addr;