From: Masahiro Yamada Date: Thu, 13 Jun 2019 01:55:32 +0000 (+0900) Subject: pinctrl: make pinconf.h self-contained X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4eb293487d05a69862a4907ee944aa271ed49a4c;p=linux.git pinctrl: make pinconf.h self-contained This header uses 'bool', but it does not include any header by itself. So, it could cause unknown type name error, depending on the header include order, although probably has been included by someone else. Include to make it self-contained. Signed-off-by: Masahiro Yamada Signed-off-by: Linus Walleij --- diff --git a/include/linux/pinctrl/pinconf.h b/include/linux/pinctrl/pinconf.h index 93c9dd133e9d1..9bebc35548096 100644 --- a/include/linux/pinctrl/pinconf.h +++ b/include/linux/pinctrl/pinconf.h @@ -14,6 +14,8 @@ #ifdef CONFIG_PINCONF +#include + struct pinctrl_dev; struct seq_file;