From db8588f95cc5e4c9d134f7f4f939b1eade419560 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 15 Sep 2023 14:34:23 +0200 Subject: [PATCH] gpio: sim: include a missing header We're using various ERR macros from linux/err.h but the include is missing. Add it. Fixes: cb8c474e79be ("gpio: sim: new testing module") Signed-off-by: Bartosz Golaszewski --- drivers/gpio/gpio-sim.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpio/gpio-sim.c b/drivers/gpio/gpio-sim.c index 2b9d9e172d5d6..59cba5b5f54a9 100644 --- a/drivers/gpio/gpio-sim.c +++ b/drivers/gpio/gpio-sim.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include -- 2.30.2