From: Wolfram Sang <wsa+renesas@sang-engineering.com>
To: linux-kernel@vger.kernel.org
Cc: "Wolfram Sang" <wsa+renesas@sang-engineering.com>,
"Alexander Shishkin" <alexander.shishkin@linux.intel.com>,
"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
"Andrew Lunn" <andrew@lunn.ch>,
"Andrew Lunn" <andrew+netdev@lunn.ch>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Armin Wolf" <W_Armin@gmx.de>,
"Benjamin Tissoires" <bentiss@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Borislav Petkov" <bp@alien8.de>,
"Chandrashekar Devegowda" <chandrashekar.devegowda@intel.com>,
"Chen-Yu Tsai" <wens@csie.org>,
coresight@lists.linaro.org,
"Dave Hansen" <dave.hansen@linux.intel.com>,
"David S. Miller" <davem@davemloft.net>,
"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
"Eric Dumazet" <edumazet@google.com>,
"Florian Fainelli" <florian.fainelli@broadcom.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Hans de Goede" <hdegoede@redhat.com>,
"Heikki Krogerus" <heikki.krogerus@linux.intel.com>,
"Heiner Kallweit" <hkallweit1@gmail.com>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Ingo Molnar" <mingo@redhat.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Jiri Kosina" <jikos@kernel.org>,
"Len Brown" <len.brown@intel.com>,
linux-arm-kernel@lists.infradead.org,
linux-input@vger.kernel.org, linux-mediatek@lists.infradead.org,
linux-media@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-pci@vger.kernel.org, linux-pm@vger.kernel.org,
linux-rtc@vger.kernel.org, linux-sunxi@lists.linux.dev,
linux-usb@vger.kernel.org,
"Loic Poulain" <loic.poulain@linaro.org>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"Mauro Carvalho Chehab" <mchehab@kernel.org>,
netdev@vger.kernel.org, "Paolo Abeni" <pabeni@redhat.com>,
"Pavel Machek" <pavel@ucw.cz>,
platform-driver-x86@vger.kernel.org,
"Rafael J. Wysocki" <rafael@kernel.org>,
"Samuel Holland" <samuel@sholland.org>,
"Sean Young" <sean@mess.org>,
"Sergey Ryazanov" <ryazanov.s.a@gmail.com>,
"Suzuki K Poulose" <suzuki.poulose@arm.com>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Ulf Hansson" <ulf.hansson@linaro.org>,
x86@kernel.org
Subject: [PATCH 00/15] treewide: don't include 'pm_wakeup.h' directly
Date: Mon, 18 Nov 2024 08:28:59 +0100 [thread overview]
Message-ID: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> (raw)
While working on the wakeup functionality of a RTC driver, I noticed
that we have a few occasions where 'pm_wakeup.h' gets included directly
despite the comment that it shouldn't be done. It doesn't build-break
because these files also include 'device.h' either directly or via some
indirection, mostly 'platform_device.h'. Still, respect the requirement
that 'pm_wakeup.h' shall only be included in 'device.h' and not
directly.
Based on 6.12-rc7. Build-bot is happy and there are no dependencies. I
suggest that each patch goes in via the relevant subsystem tree.
Thanks and happy hacking,
Wolfram
Wolfram Sang (15):
x86/platform/olpc-xo1-sci: don't include 'pm_wakeup.h' directly
drivers core: don't include 'pm_wakeup.h' directly
HID: google: don't include 'pm_wakeup.h' directly
coresight: etm4x: don't include 'pm_wakeup.h' directly
Input: spear-keyboard - don't include 'pm_wakeup.h' directly
Input: sun4i-lradc-keys - don't include 'pm_wakeup.h' directly
media: mceusb: don't include 'pm_wakeup.h' directly
mmc: core: don't include 'pm_wakeup.h' directly
net: phy: broadcom: don't include 'pm_wakeup.h' directly
net: wwan: t7xx: don't include 'pm_wakeup.h' directly
PCI: don't include 'pm_wakeup.h' directly
platform/x86: quickstart: don't include 'pm_wakeup.h' directly
rtc: brcmstb-waketimer: don't include 'pm_wakeup.h' directly
usb: typec: tcpci_mt6370: don't include 'pm_wakeup.h' directly
PM / Sleep: don't include 'pm_wakeup.h' directly
arch/x86/platform/olpc/olpc-xo1-sci.c | 1 -
drivers/base/power/sysfs.c | 1 -
drivers/hid/hid-google-hammer.c | 1 -
drivers/hwtracing/coresight/coresight-etm4x-core.c | 1 -
drivers/input/keyboard/spear-keyboard.c | 1 -
drivers/input/keyboard/sun4i-lradc-keys.c | 1 -
drivers/media/rc/mceusb.c | 1 -
drivers/mmc/core/core.c | 1 -
drivers/mmc/core/host.c | 1 -
drivers/net/phy/broadcom.c | 2 +-
drivers/net/wwan/t7xx/t7xx_pci.c | 1 -
drivers/pci/pci.c | 1 -
drivers/platform/x86/quickstart.c | 1 -
drivers/rtc/rtc-brcmstb-waketimer.c | 1 -
drivers/usb/typec/tcpm/tcpci_mt6370.c | 1 -
kernel/power/autosleep.c | 1 -
16 files changed, 1 insertion(+), 16 deletions(-)
--
2.39.2
next reply other threads:[~2024-11-18 7:29 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-18 7:28 Wolfram Sang [this message]
2024-11-18 7:29 ` [PATCH 03/15] HID: google: don't include 'pm_wakeup.h' directly Wolfram Sang
2024-11-18 9:58 ` Jiri Kosina
2024-11-18 7:29 ` [PATCH 05/15] Input: spear-keyboard - " Wolfram Sang
2024-11-20 5:36 ` Dmitry Torokhov
2024-11-18 7:29 ` [PATCH 06/15] Input: sun4i-lradc-keys " Wolfram Sang
2024-11-20 5:36 ` Dmitry Torokhov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241118072917.3853-1-wsa+renesas@sang-engineering.com \
--to=wsa+renesas@sang-engineering.com \
--cc=W_Armin@gmx.de \
--cc=alexander.shishkin@linux.intel.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andrew+netdev@lunn.ch \
--cc=andrew@lunn.ch \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bentiss@kernel.org \
--cc=bhelgaas@google.com \
--cc=bp@alien8.de \
--cc=chandrashekar.devegowda@intel.com \
--cc=coresight@lists.linaro.org \
--cc=dave.hansen@linux.intel.com \
--cc=davem@davemloft.net \
--cc=dmitry.torokhov@gmail.com \
--cc=edumazet@google.com \
--cc=florian.fainelli@broadcom.com \
--cc=gregkh@linuxfoundation.org \
--cc=hdegoede@redhat.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=hkallweit1@gmail.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=jernej.skrabec@gmail.com \
--cc=jikos@kernel.org \
--cc=kuba@kernel.org \
--cc=len.brown@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=linux-usb@vger.kernel.org \
--cc=loic.poulain@linaro.org \
--cc=matthias.bgg@gmail.com \
--cc=mchehab@kernel.org \
--cc=mingo@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pavel@ucw.cz \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=ryazanov.s.a@gmail.com \
--cc=samuel@sholland.org \
--cc=sean@mess.org \
--cc=suzuki.poulose@arm.com \
--cc=tglx@linutronix.de \
--cc=ulf.hansson@linaro.org \
--cc=wens@csie.org \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).