From 2535683834cc33729cad8d444caa3c170942fe26 Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Wed, 19 Jan 2022 14:06:00 +0100 Subject: [PATCH] fix wrong function declaration Coverity spotted a wrong function declaration, fix it. Coverity-Id: 1497423 Signed-off-by: Juergen Gross Reviewed-by: Bertrand Marquis Acked-by: Andrew Cooper --- include/balloon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/balloon.h b/include/balloon.h index 8f7c8bd..510e475 100644 --- a/include/balloon.h +++ b/include/balloon.h @@ -50,7 +50,7 @@ static inline int chk_free_pages(unsigned long needed) { return needed <= nr_free_pages; } -static inline balloon_set_nr_pages(unsigned long pages, unsigned long pfn) { } +static inline void balloon_set_nr_pages(unsigned long pages, unsigned long pfn) { } #endif /* CONFIG_BALLOON */ #endif /* _BALLOON_H_ */ -- 2.39.5