diff options
author | Claudiu Beznea <claudiu.beznea@microchip.com> | 2023-05-17 12:49:03 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-05-23 13:55:56 +0100 |
commit | a9392efae9f5de42673cfc1b81ac6fb88bdb26b2 (patch) | |
tree | c170a95fdbed7434c4f61e229775203aefef4272 /sound/soc/codecs/max98373-i2c.c | |
parent | 2f3092e77f98fcfc0d653846591401bfe2a5232e (diff) |
ASoC: use pm.h instead of runtime_pm.h
Do not include pm_runtime.h header in files where runtime PM support is
not implemented. Use pm.h instead as suspend to RAM specific
implementation is available.
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20230517094903.2895238-3-claudiu.beznea@microchip.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/max98373-i2c.c')
-rw-r--r-- | sound/soc/codecs/max98373-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/max98373-i2c.c b/sound/soc/codecs/max98373-i2c.c index 3d6da4f133de..0fa5ceca62a2 100644 --- a/sound/soc/codecs/max98373-i2c.c +++ b/sound/soc/codecs/max98373-i2c.c @@ -9,7 +9,7 @@ #include <linux/mod_devicetable.h> #include <linux/of.h> #include <linux/of_gpio.h> -#include <linux/pm_runtime.h> +#include <linux/pm.h> #include <linux/regmap.h> #include <linux/slab.h> #include <linux/cdev.h> |