[GIT PULL] Driver core fixes for 7.0-rc2
From: Danilo Krummrich
Date: Sat Feb 28 2026 - 15:46:25 EST
Hi Linus,
Please pull these driver-core fixes.
All commits have been in linux-next for a couple rounds; no conflicts expected.
- Danilo
The following changes since commit 6de23f81a5e08be8fbf5e8d7e9febc72a5b5f27f:
Linux 7.0-rc1 (2026-02-22 13:18:59 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git tags/driver-core-7.0-rc2
for you to fetch changes up to 78437ab3b769f80526416570f60173c89858dd84:
clk: scu/imx8qxp: do not register driver in probe() (2026-02-24 12:54:17 +0100)
----------------------------------------------------------------
Driver core fixes for 7.0-rc2
- Do not register imx_clk_scu_driver in imx8qxp_clk_probe(); besides
fixing two other issues, this avoids a deadlock in combination with
commit dc23806a7c47 ("driver core: enforce device_lock for
driver_match_device()").
- Move secondary node lookup from device_get_next_child_node() to
fwnode_get_next_child_node(); this avoids issues when users switch
from the device API to the fwnode API.
- Export io_define_{read,write}!() to avoid unused import warnings when
CONFIG_PCI=n.
----------------------------------------------------------------
Andy Shevchenko (1):
device property: Allow secondary lookup in fwnode_get_next_child_node()
Danilo Krummrich (2):
rust: io: macro_export io_define_read!() and io_define_write!()
clk: scu/imx8qxp: do not register driver in probe()
drivers/base/property.c | 27 +++++++++++++-------------
drivers/clk/imx/clk-imx8qxp.c | 24 ++++++++++++++++++++++-
drivers/clk/imx/clk-scu.c | 12 +++++++++++-
drivers/clk/imx/clk-scu.h | 2 ++
rust/kernel/io.rs | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------
rust/kernel/pci/io.rs | 24 +++++++++++------------
6 files changed, 150 insertions(+), 70 deletions(-)