diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-09-02 13:26:18 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-09-12 05:18:17 -0400 |
commit | 6d363bd1786cf42cf2eb7bb7bf1e0d69788bdb2f (patch) | |
tree | b2c0f3536a52cf05939c3b00f5df836e535f9835 | |
parent | 5969d1bb3082b41eba8fd2c826559abe38ccb6df (diff) |
pinctrl: uniphier: include <linux/build_bug.h> instead of <linux/bug.h>
The #includes <linux/bug.h> is here to use BUILD_BUG_ON_ZERO().
Thanks to commit bc6245e5efd7 ("bug: split BUILD_BUG stuff out into
<linux/build_bug.h>"), it is now possible to reduce the number of
headers pulled in.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/uniphier/pinctrl-uniphier.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/uniphier/pinctrl-uniphier.h b/drivers/pinctrl/uniphier/pinctrl-uniphier.h index c075ecb8e5db..0a3d2ac27503 100644 --- a/drivers/pinctrl/uniphier/pinctrl-uniphier.h +++ b/drivers/pinctrl/uniphier/pinctrl-uniphier.h | |||
@@ -17,7 +17,7 @@ | |||
17 | #define __PINCTRL_UNIPHIER_H__ | 17 | #define __PINCTRL_UNIPHIER_H__ |
18 | 18 | ||
19 | #include <linux/bitops.h> | 19 | #include <linux/bitops.h> |
20 | #include <linux/bug.h> | 20 | #include <linux/build_bug.h> |
21 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
22 | #include <linux/types.h> | 22 | #include <linux/types.h> |
23 | 23 | ||