diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-11-17 12:08:02 +0100 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-11-22 15:36:27 +0100 |
commit | 878cf979c1458f835d436debb886f9dfff59012a (patch) | |
tree | 6d58c0d2c26e7d2dba8d6989e61910e59a4523de | |
parent | pwm: lpss: Rename MAX_PWMS --> LPSS_MAX_PWMS (diff) | |
download | linux-878cf979c1458f835d436debb886f9dfff59012a.tar.xz linux-878cf979c1458f835d436debb886f9dfff59012a.zip |
pwm: lpss: Include headers we are the direct user of
For the sake of integrity, include headers we are the direct
user of.
Replace the inclusion of device.h by a forward declaration
of struct device plus a (cheaper) of types.h as device.h is
an expensive include (measured in compiler effort).
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Thierry Reding <thierry.reding@gmail.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
-rw-r--r-- | drivers/pwm/pwm-lpss.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-lpss.h b/drivers/pwm/pwm-lpss.h index 2c746c51b883..4ce6daa46ca8 100644 --- a/drivers/pwm/pwm-lpss.h +++ b/drivers/pwm/pwm-lpss.h @@ -10,8 +10,10 @@ #ifndef __PWM_LPSS_H #define __PWM_LPSS_H -#include <linux/device.h> #include <linux/pwm.h> +#include <linux/types.h> + +struct device; #define LPSS_MAX_PWMS 4 |