Re: [U-Boot] [UBOOT PATCH 1/4] armv7: psci: make v7_flush_dcache_all public for all psci code

2016-09-20 Thread york sun
On 08/19/2016 02:20 AM, macro.wav...@gmail.com wrote: > From: Hongbo Zhang > > The v7_flush_dcache_all function will be called by ls102xa platform system > suspend, it is necessary to make it a public call instead of a local one, but > changing the LENTRY to ENTRY isn't enough, because there is an

Re: [U-Boot] [UBOOT PATCH 1/4] armv7: psci: make v7_flush_dcache_all public for all psci code

2016-08-19 Thread Tom Rini
On Fri, Aug 19, 2016 at 05:20:30PM +0800, macro.wav...@gmail.com wrote: > From: Hongbo Zhang > > The v7_flush_dcache_all function will be called by ls102xa platform system > suspend, it is necessary to make it a public call instead of a local one, but > changing the LENTRY to ENTRY isn't enough,

[U-Boot] [UBOOT PATCH 1/4] armv7: psci: make v7_flush_dcache_all public for all psci code

2016-08-19 Thread macro . wave . z
From: Hongbo Zhang The v7_flush_dcache_all function will be called by ls102xa platform system suspend, it is necessary to make it a public call instead of a local one, but changing the LENTRY to ENTRY isn't enough, because there is another one using the same name, so this one gets a psci_ prefix.