Re: [PATCH] irq_work: consolidate arch_irq_work_raise prototypes

2023-05-25 Thread Catalin Marinas
On Tue, May 16, 2023 at 10:02:31PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The prototype was hidden on x86, which causes a warning: > > kernel/irq_work.c:72:13: error: no previous prototype for > 'arch_irq_work_raise' [-Werror=missing-prototypes] > > Fix this by providing it in

Re: [PATCH] irq_work: consolidate arch_irq_work_raise prototypes

2023-05-21 Thread Guo Ren
On Wed, May 17, 2023 at 4:03 AM Arnd Bergmann wrote: > > From: Arnd Bergmann > > The prototype was hidden on x86, which causes a warning: > > kernel/irq_work.c:72:13: error: no previous prototype for > 'arch_irq_work_raise' [-Werror=missing-prototypes] > > Fix this by providing it in only one

Re: [PATCH] irq_work: consolidate arch_irq_work_raise prototypes

2023-05-17 Thread Alexander Gordeev
On Tue, May 16, 2023 at 10:02:31PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The prototype was hidden on x86, which causes a warning: > > kernel/irq_work.c:72:13: error: no previous prototype for > 'arch_irq_work_raise' [-Werror=missing-prototypes] > > Fix this by providing it in

Re: [PATCH] irq_work: consolidate arch_irq_work_raise prototypes

2023-05-16 Thread Palmer Dabbelt
On Tue, 16 May 2023 13:02:31 PDT (-0700), a...@kernel.org wrote: From: Arnd Bergmann The prototype was hidden on x86, which causes a warning: kernel/irq_work.c:72:13: error: no previous prototype for 'arch_irq_work_raise' [-Werror=missing-prototypes] Fix this by providing it in only one

[PATCH] irq_work: consolidate arch_irq_work_raise prototypes

2023-05-16 Thread Arnd Bergmann
From: Arnd Bergmann The prototype was hidden on x86, which causes a warning: kernel/irq_work.c:72:13: error: no previous prototype for 'arch_irq_work_raise' [-Werror=missing-prototypes] Fix this by providing it in only one place that is always visible. Signed-off-by: Arnd Bergmann ---