diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-09-04 13:26:17 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-09-19 01:37:19 +0200 |
commit | 677506ee09b98d5eaf6921c53f8412e5bd912514 (patch) | |
tree | 0e37361442c4781d28dded37022f95f3a259d98f /drivers/pinctrl/intel/pinctrl-intel.h | |
parent | Merge branch 'ib-mtk' into devel (diff) | |
download | linux-677506ee09b98d5eaf6921c53f8412e5bd912514.tar.xz linux-677506ee09b98d5eaf6921c53f8412e5bd912514.zip |
pinctrl: intel: Move linux/pm.h to the local header
We now using a common macro for PM operations in pin control drivers for Intel
SoCs, and since that macro relies on the definition and macro from linux/pm.h
header file, it's logical to include it directly in pinctrl-intel.h. Otherwise
it's a bit fragile and requires a proper ordering of header inclusion in C
files.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/intel/pinctrl-intel.h')
-rw-r--r-- | drivers/pinctrl/intel/pinctrl-intel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pinctrl/intel/pinctrl-intel.h b/drivers/pinctrl/intel/pinctrl-intel.h index acb723bbad87..6b558c533bd1 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.h +++ b/drivers/pinctrl/intel/pinctrl-intel.h @@ -10,6 +10,8 @@ #ifndef PINCTRL_INTEL_H #define PINCTRL_INTEL_H +#include <linux/pm.h> + struct pinctrl_pin_desc; struct platform_device; struct device; |