Message ID | cb600b79b3f603302a58198c1f5e84488441b736.1691575243.git.nicola.vetrini@bugseng.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | xen: address MISRA C:2012 Rule 8.4 | expand |
On 09.08.2023 13:02, Nicola Vetrini wrote: > Include an additional header to make the declarations for > functions 'watchdog_*' visible prior to their definition in > the file, thereby resolving the violations of Rule 8.4. > > No functional change. Fixes: c8177e691f0f ("watchdog: Move watchdog from being x86 specific to common code") > Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> Reviewed-by: Jan Beulich <jbeulich@suse.com>
diff --git a/xen/arch/x86/nmi.c b/xen/arch/x86/nmi.c index 104e366bd3..dc79c25e3f 100644 --- a/xen/arch/x86/nmi.c +++ b/xen/arch/x86/nmi.c @@ -24,6 +24,7 @@ #include <xen/console.h> #include <xen/smp.h> #include <xen/keyhandler.h> +#include <xen/watchdog.h> #include <xen/cpu.h> #include <asm/current.h> #include <asm/mc146818rtc.h>
Include an additional header to make the declarations for functions 'watchdog_*' visible prior to their definition in the file, thereby resolving the violations of Rule 8.4. No functional change. Signed-off-by: Nicola Vetrini <nicola.vetrini@bugseng.com> --- xen/arch/x86/nmi.c | 1 + 1 file changed, 1 insertion(+)