From: Oleksandr Andrushchenko Date: Tue, 14 Dec 2021 08:44:44 +0000 (+0100) Subject: vpci: fix function attributes for vpci_process_pending X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~1231 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7dc0233f534f64e7f3ee71e74e05dd5ab8a24808;p=xen.git vpci: fix function attributes for vpci_process_pending vpci_process_pending is defined with different attributes, e.g. with __must_check if CONFIG_HAS_VPCI enabled and not otherwise. Fix this by defining both of the definitions with __must_check. Fixes: 14583a590783 ("7fbb096bf345 kconfig: don't select VPCI if building a shim-only binary") Signed-off-by: Oleksandr Andrushchenko Reviewed-by: Julien Grall Reviewed-by: Roger Pau Monné --- diff --git a/xen/include/xen/vpci.h b/xen/include/xen/vpci.h index 9ea66e033f..3f32de9d7e 100644 --- a/xen/include/xen/vpci.h +++ b/xen/include/xen/vpci.h @@ -247,7 +247,7 @@ static inline void vpci_write(pci_sbdf_t sbdf, unsigned int reg, ASSERT_UNREACHABLE(); } -static inline bool vpci_process_pending(struct vcpu *v) +static inline bool __must_check vpci_process_pending(struct vcpu *v) { ASSERT_UNREACHABLE(); return false;