diff options
author | 2022-10-07 16:44:44 +0300 | |
---|---|---|
committer | 2022-10-24 12:53:33 +0300 | |
commit | eebefdd0b7796c4be5c87fa2ab51aca2568835b1 (patch) | |
tree | c1b4767df326508d973d6d4ee90ec619a35cb96d /drivers/pinctrl/bcm/pinctrl-nsp-mux.c | |
parent | 20ce95528f73ded5b80c202b40be86fe0d2af4eb (diff) | |
download | linux-yocto-eebefdd0b7796c4be5c87fa2ab51aca2568835b1.tar.gz |
pinctrl: bcm: Add missing header(s)
Do not imply that some of the generic headers may be always included.
Instead, include explicitly what we are direct user of.
While at it, sort headers alphabetically.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/bcm/pinctrl-nsp-mux.c')
-rw-r--r-- | drivers/pinctrl/bcm/pinctrl-nsp-mux.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/pinctrl/bcm/pinctrl-nsp-mux.c b/drivers/pinctrl/bcm/pinctrl-nsp-mux.c index db8f79920ff0..eb6298507c1d 100644 --- a/drivers/pinctrl/bcm/pinctrl-nsp-mux.c +++ b/drivers/pinctrl/bcm/pinctrl-nsp-mux.c @@ -20,12 +20,14 @@ #include <linux/err.h> #include <linux/io.h> #include <linux/of.h> -#include <linux/pinctrl/pinconf.h> +#include <linux/platform_device.h> +#include <linux/seq_file.h> +#include <linux/slab.h> + #include <linux/pinctrl/pinconf-generic.h> +#include <linux/pinctrl/pinconf.h> #include <linux/pinctrl/pinctrl.h> #include <linux/pinctrl/pinmux.h> -#include <linux/platform_device.h> -#include <linux/slab.h> #include "../core.h" #include "../pinctrl-utils.h" |