From: Thierry Reding Date: Mon, 5 Feb 2018 12:47:50 +0000 (+0100) Subject: mmc: meson-gx-mmc: Explicitly include pinctr/consumer.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8fb572acb2191bd14fc1363bf73461a994842e6f;p=linux.git mmc: meson-gx-mmc: Explicitly include pinctr/consumer.h The Meson GX MMC driver fails to build after commit 23c35f48f5fb ("pinctrl: remove include file from ") because it relies on the pinctrl/consumer.h being pulled in by the device.h header implicitly. Include the header explicitly to avoid the build failure. Cc: Linus Walleij Signed-off-by: Thierry Reding Signed-off-by: Linus Torvalds --- diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c index 32a6a228cd120..22438ebfe4e62 100644 --- a/drivers/mmc/host/meson-gx-mmc.c +++ b/drivers/mmc/host/meson-gx-mmc.c @@ -37,6 +37,7 @@ #include #include #include +#include #define DRIVER_NAME "meson-gx-mmc"