diff options
author | 2024-11-18 08:29:07 +0100 | |
---|---|---|
committer | 2024-12-10 11:18:45 +0100 | |
commit | 65169604e8d00308c23d66d02a70d67a5e4ff68c (patch) | |
tree | ccf9934af99cf6f6f5ba23f6bb99fbcea8016caf /drivers/mmc | |
parent | mmc: mtk-sd: Add support for ignoring cmd response CRC (diff) | |
download | wireguard-linux-65169604e8d00308c23d66d02a70d67a5e4ff68c.tar.xz wireguard-linux-65169604e8d00308c23d66d02a70d67a5e4ff68c.zip |
mmc: core: don't include 'pm_wakeup.h' directly
The header clearly states that it does not want to be included directly,
only via 'device.h'. 'platform_device.h' works equally well. Remove the
direct inclusion.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Message-ID: <20241118072917.3853-9-wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/core.c | 1 | ||||
-rw-r--r-- | drivers/mmc/core/host.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 4ba28a10b2df..5241528f8b90 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -19,7 +19,6 @@ #include <linux/scatterlist.h> #include <linux/log2.h> #include <linux/pm_runtime.h> -#include <linux/pm_wakeup.h> #include <linux/suspend.h> #include <linux/fault-inject.h> #include <linux/random.h> diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c index 48bda70145ee..bdb22998357e 100644 --- a/drivers/mmc/core/host.c +++ b/drivers/mmc/core/host.c @@ -14,7 +14,6 @@ #include <linux/idr.h> #include <linux/of.h> #include <linux/pagemap.h> -#include <linux/pm_wakeup.h> #include <linux/export.h> #include <linux/leds.h> #include <linux/slab.h> |