Message ID | 5ea7277c21215c7b4aa776d5379dc2d6263228c6.1395994759.git.nsekhar@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Mar 28, 2014 at 02:05:28PM +0530, Sekhar Nori wrote: > From: Afzal Mohammed <afzal@ti.com> > > Its better to use the available macro than 0x1. > No functional change. > > Signed-off-by: Afzal Mohammed <afzal@ti.com> > Signed-off-by: Sekhar Nori <nsekhar@ti.com> > --- > This series applies to latest of linux-next/master NAK. See my L2 cache series posted on LAKML which completely removes this code.
Hi Russell, On Friday 28 March 2014 04:19 PM, Russell King - ARM Linux wrote: > On Fri, Mar 28, 2014 at 02:05:28PM +0530, Sekhar Nori wrote: >> From: Afzal Mohammed <afzal@ti.com> >> >> Its better to use the available macro than 0x1. >> No functional change. >> >> Signed-off-by: Afzal Mohammed <afzal@ti.com> >> Signed-off-by: Sekhar Nori <nsekhar@ti.com> >> --- >> This series applies to latest of linux-next/master > > NAK. See my L2 cache series posted on LAKML which completely removes > this code. Okay. Will look at your series now. Thanks, Sekhar -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/omap4-common.c b/arch/arm/mach-omap2/omap4-common.c index 95e171a..8f18460 100644 --- a/arch/arm/mach-omap2/omap4-common.c +++ b/arch/arm/mach-omap2/omap4-common.c @@ -219,7 +219,7 @@ static int __init omap_l2_cache_init(void) omap_smc1(0x109, aux_ctrl); /* Enable PL310 L2 Cache controller */ - omap_smc1(0x102, 0x1); + omap_smc1(0x102, L2X0_CTRL_EN); if (of_have_populated_dt()) l2x0_of_init(aux_ctrl, L2X0_AUX_CTRL_MASK);