diff options
author | Ricardo B. Marliere <ricardo@marliere.net> | 2024-02-19 13:14:36 +0100 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-03-03 14:58:06 +0100 |
commit | 99fea943d9dc2500227bced9acd671e5b39a1471 (patch) | |
tree | 92b238d9eadf8ca97fca919c4d21d76eec62de8d /drivers/soundwire/master.c | |
parent | soundwire: bus_type: make sdw_bus_type const (diff) | |
download | linux-99fea943d9dc2500227bced9acd671e5b39a1471.tar.xz linux-99fea943d9dc2500227bced9acd671e5b39a1471.zip |
soundwire: constify the struct device_type usage
Since commit aed65af1cc2f ("drivers: make device_type const"), the driver
core can properly handle constant struct device_type. Move the
sdw_master_type and sdw_slave_type variables to be constant structures as
well, placing it into read-only memory which can not be modified at
runtime.
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: "Ricardo B. Marliere" <ricardo@marliere.net>
Link: https://lore.kernel.org/r/20240219-device_cleanup-soundwire-v1-1-9edd51767611@marliere.net
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/soundwire/master.c')
-rw-r--r-- | drivers/soundwire/master.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soundwire/master.c b/drivers/soundwire/master.c index 51abedbbaa66..b2c64512739d 100644 --- a/drivers/soundwire/master.c +++ b/drivers/soundwire/master.c @@ -112,7 +112,7 @@ static const struct dev_pm_ops master_dev_pm = { pm_generic_runtime_resume, NULL) }; -struct device_type sdw_master_type = { +const struct device_type sdw_master_type = { .name = "soundwire_master", .release = sdw_master_device_release, .pm = &master_dev_pm, |