xen/pv_console: Fix MISRA C 2012 Rule 2.1 violation
authorXenia Ragiadakou <burzalodowa@gmail.com>
Fri, 8 Jul 2022 07:41:36 +0000 (09:41 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 8 Jul 2022 07:41:36 +0000 (09:41 +0200)
Remove the definition of the function pv_console_evtchn(),
when CONFIG_XEN_GUEST is not set, because the function is not used.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Tested-by: Jiamei Xie <jiamei.xie@arm.com> # arm64
xen/include/xen/pv_console.h

index 4745f46f2d1bd681d6e8eb69194bc71866f7e029..55b20323fb2634525731a8b772d3e976b8132725 100644 (file)
@@ -19,11 +19,6 @@ static inline void pv_console_set_rx_handler(serial_rx_fn fn) { }
 static inline void pv_console_init_postirq(void) { }
 static inline void pv_console_puts(const char *buf, size_t nr) { }
 static inline size_t pv_console_rx(struct cpu_user_regs *regs) { return 0; }
-evtchn_port_t pv_console_evtchn(void)
-{
-    ASSERT_UNREACHABLE();
-    return 0;
-}
 
 #endif /* !CONFIG_XEN_GUEST */
 #endif /* __XEN_PV_CONSOLE_H__ */