From 8b6742e5b31e213412d8a5a1b745ca03c6fd8409 Mon Sep 17 00:00:00 2001 From: Matti Vaittinen Date: Mon, 1 Jul 2024 10:56:49 +0300 Subject: [PATCH] watchdog: bd96801_wdt: Add missing include for FIELD_*() The FIELD_PREP() and FIELD_GET() macros are defined in the linux/bitfield.h. Include this header to avoid missing the macro definitions. Signed-off-by: Matti Vaittinen Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202406300817.hcJ9VtLf-lkp@intel.com/ Acked-by: Guenter Roeck Link: https://lore.kernel.org/r/ZoJhQVF-U6sSJ_Sg@fedora Signed-off-by: Lee Jones --- drivers/watchdog/bd96801_wdt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/watchdog/bd96801_wdt.c b/drivers/watchdog/bd96801_wdt.c index ff51f42ced2a8..12b74fd2bc052 100644 --- a/drivers/watchdog/bd96801_wdt.c +++ b/drivers/watchdog/bd96801_wdt.c @@ -5,6 +5,7 @@ * ROHM BD96801 watchdog driver */ +#include #include #include #include -- 2.47.3