diff options
author | Thierry Reding | 2018-02-05 13:47:50 +0100 |
---|---|---|
committer | Linus Torvalds | 2018-02-05 09:41:54 -0800 |
commit | 8fb572acb2191bd14fc1363bf73461a994842e6f (patch) | |
tree | 3aac280d7d594e215af745280c52c7f26030ffb5 /drivers | |
parent | 1c16a9ce01487a98052d37a94e4c411b4fd9617b (diff) |
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 <linux/device.h>") 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 <linus.walleij@linaro.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/meson-gx-mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c index 32a6a228cd12..22438ebfe4e6 100644 --- a/drivers/mmc/host/meson-gx-mmc.c +++ b/drivers/mmc/host/meson-gx-mmc.c @@ -37,6 +37,7 @@ #include <linux/regulator/consumer.h> #include <linux/interrupt.h> #include <linux/bitfield.h> +#include <linux/pinctrl/consumer.h> #define DRIVER_NAME "meson-gx-mmc" |