From: Bartosz Golaszewski Date: Thu, 16 Oct 2025 09:09:27 +0000 (+0200) Subject: gpio: aspeed: remove unneeded include X-Git-Tag: v6.19-rc1~146^2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0efa5b2ca6fa7baab4c523b34cfb9495ec143d61;p=thirdparty%2Flinux.git gpio: aspeed: remove unneeded include This driver no longer uses any symbols from the GPIOLIB internal header. We can now drop the gpiolib.h include. Reviewed-by: Linus Walleij Reviewed-by: Andrew Jeffery Link: https://lore.kernel.org/r/20251016-aspeed-gpiolib-include-v1-3-31201c06d124@linaro.org Signed-off-by: Bartosz Golaszewski --- diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c index 3da37a0fda3fb..2e0ae953dd996 100644 --- a/drivers/gpio/gpio-aspeed.c +++ b/drivers/gpio/gpio-aspeed.c @@ -29,7 +29,6 @@ * access to some GPIOs and to arbitrate between coprocessor and ARM. */ #include -#include "gpiolib.h" /* Non-constant mask variant of FIELD_GET() and FIELD_PREP() */ #define field_get(_mask, _reg) (((_reg) & (_mask)) >> (ffs(_mask) - 1))