From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Mon, 5 Mar 2012 10:42:53 -0700 Subject: [U-Boot] [PATCH V2 18/18] OMAP5: reset: Use cold reset in case of 5430ES1.0 In-Reply-To: <1330612723-11328-19-git-send-email-r.sricharan@ti.com> References: <1330612723-11328-1-git-send-email-r.sricharan@ti.com> <1330612723-11328-19-git-send-email-r.sricharan@ti.com> Message-ID: <20120305174253.GA18051@bill-the-cat> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, Mar 01, 2012 at 08:08:43PM +0530, R Sricharan wrote: > Warm reset is not functional in case of omap5430ES1.0. > So use cold reset instead. [snip] > --- a/arch/arm/cpu/armv7/omap-common/reset.S > +++ b/arch/arm/cpu/armv7/omap-common/reset.S > @@ -23,6 +23,7 @@ > > #include > > +#ifndef CONFIG_OMAP54XX > .global reset_cpu As Aneesh shows in the THUMB2 support thread, there's directives to make ASM+weak work. Please use them. > +static void reset_cpu_omap5(ulong addr) Add and just call this 'void __weak reset_cpu(ulong addr)' Thanks! -- Tom