]> Git Repo - J-linux.git/commitdiff
mmc: core: make mmc_host_class constant
authorRicardo B. Marliere <[email protected]>
Tue, 5 Mar 2024 19:49:30 +0000 (16:49 -0300)
committerUlf Hansson <[email protected]>
Wed, 6 Mar 2024 22:36:29 +0000 (23:36 +0100)
Since commit 43a7206b0963 ("driver core: class: make class_register() take
a const *"), the driver core allows for struct class to be in read-only
memory, so move the mmc_host_class structure to be declared at build time
placing it into read-only memory, instead of having to be dynamically
allocated at boot time.

Cc: Greg Kroah-Hartman <[email protected]>
Suggested-by: Greg Kroah-Hartman <[email protected]>
Signed-off-by: Ricardo B. Marliere <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
drivers/mmc/core/host.c

index 3aa9dda6fd4ff4b643b2681a82b88aadf8ad3578..8f8781d6c25ed0941f58e71dd67597ff7911a94a 100644 (file)
@@ -88,7 +88,7 @@ static int mmc_host_classdev_shutdown(struct device *dev)
        return 0;
 }
 
-static struct class mmc_host_class = {
+static const struct class mmc_host_class = {
        .name           = "mmc_host",
        .dev_release    = mmc_host_classdev_release,
        .shutdown_pre   = mmc_host_classdev_shutdown,
This page took 0.045224 seconds and 4 git commands to generate.