summaryrefslogtreecommitdiff
path: root/include/linux/device
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2026-03-27 12:16:52 +0300
committerTakashi Iwai <tiwai@suse.de>2026-03-27 12:16:52 +0300
commit50c8f83c41123cab79575e8d73040a37da4612c5 (patch)
treec824f90d21d57e668979cad4efb4c59d0003d6b7 /include/linux/device
parent591721223be9e28f83489a59289579493b8e3d83 (diff)
parentd40a198e2b7821197c5c77b89d0130cc90f400f5 (diff)
downloadlinux-50c8f83c41123cab79575e8d73040a37da4612c5.tar.xz
Merge tag 'asoc-fix-v7.0-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v7.0 This is two week's worth of fixes and quirks so it's a bit larger than you might expect, there's nothing too exciting individually and nothing in core code.
Diffstat (limited to 'include/linux/device')
-rw-r--r--include/linux/device/bus.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/device/bus.h b/include/linux/device/bus.h
index 63de5f053c33..c1b463cd6464 100644
--- a/include/linux/device/bus.h
+++ b/include/linux/device/bus.h
@@ -65,6 +65,9 @@ struct fwnode_handle;
* this bus.
* @pm: Power management operations of this bus, callback the specific
* device driver's pm-ops.
+ * @driver_override: Set to true if this bus supports the driver_override
+ * mechanism, which allows userspace to force a specific
+ * driver to bind to a device via a sysfs attribute.
* @need_parent_lock: When probing or removing a device on this bus, the
* device core should lock the device's parent.
*
@@ -106,6 +109,7 @@ struct bus_type {
const struct dev_pm_ops *pm;
+ bool driver_override;
bool need_parent_lock;
};