Re: powerpc/64s: Include header file to fix a warning

2019-03-14 Thread Michael Ellerman
On Tue, 2019-03-12 at 20:18:23 UTC, Mathieu Malaterre wrote: > Make sure to include to provide the following prototype: > hv_nmi_check_nonrecoverable. > > Remove the following warning treated as error (W=1): > > arch/powerpc/kernel/traps.c:393:6: error: no previous prototype for > 'hv_nmi_che

Re: [PATCH] powerpc/64s: Include header file to fix a warning

2019-03-12 Thread Christophe Leroy
Le 12/03/2019 à 21:18, Mathieu Malaterre a écrit : Make sure to include to provide the following prototype: hv_nmi_check_nonrecoverable. Remove the following warning treated as error (W=1): arch/powerpc/kernel/traps.c:393:6: error: no previous prototype for 'hv_nmi_check_nonrecoverable'

[PATCH] powerpc/64s: Include header file to fix a warning

2019-03-12 Thread Mathieu Malaterre
Make sure to include to provide the following prototype: hv_nmi_check_nonrecoverable. Remove the following warning treated as error (W=1): arch/powerpc/kernel/traps.c:393:6: error: no previous prototype for 'hv_nmi_check_nonrecoverable' [-Werror=missing-prototypes] Signed-off-by: Mathieu Mal