Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-08-03 Thread Geert Uytterhoeven
eline v5.7.. arch/sh/lib/delay.c" on top of next-20200721 > reports: > > ee0e4f15dfd4 (origin/akpm) sh: add missing EXPORT_SYMBOL() for __delay > d1f56f318d23 sh: add missing EXPORT_SYMBOL() for __delay > > Maybe it just needs to be dropped from the akpm tree in -next ?

Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-07-24 Thread Andrew Morton
On Fri, 24 Jul 2020 15:44:23 -0400 Rich Felker wrote: > Andrew, could you drop your copy of this > patch? I have done so, thanks.

Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-07-24 Thread Rich Felker
On Wed, Jul 22, 2020 at 04:52:56PM -0700, Guenter Roeck wrote: > Rich, > > On 7/22/20 3:52 PM, Rich Felker wrote: > > On Tue, Jul 21, 2020 at 07:38:40PM -0700, Guenter Roeck wrote: > >> On Thu, Dec 12, 2019 at 11:38:43AM +0900, Kuninori Morimoto wrote: > >>> From: Kuninori Morimoto > >>> > >>>

Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-07-22 Thread Guenter Roeck
Rich, On 7/22/20 3:52 PM, Rich Felker wrote: > On Tue, Jul 21, 2020 at 07:38:40PM -0700, Guenter Roeck wrote: >> On Thu, Dec 12, 2019 at 11:38:43AM +0900, Kuninori Morimoto wrote: >>> From: Kuninori Morimoto >>> >>> __delay() is used from kernel module. >>> We need EXPORT_SYMBOL(), otherwise we

Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-07-22 Thread Rich Felker
On Tue, Jul 21, 2020 at 07:38:40PM -0700, Guenter Roeck wrote: > On Thu, Dec 12, 2019 at 11:38:43AM +0900, Kuninori Morimoto wrote: > > From: Kuninori Morimoto > > > > __delay() is used from kernel module. > > We need EXPORT_SYMBOL(), otherwise we will get compile error. > > > > ERROR:

Re: [PATCH] sh: add missing EXPORT_SYMBOL() for __delay

2020-07-21 Thread Guenter Roeck
On Thu, Dec 12, 2019 at 11:38:43AM +0900, Kuninori Morimoto wrote: > From: Kuninori Morimoto > > __delay() is used from kernel module. > We need EXPORT_SYMBOL(), otherwise we will get compile error. > > ERROR: "__delay" [drivers/net/phy/mdio-cavium.ko] undefined! > > Signed-off-by: Kuninori