From: Greg Kroah-Hartman Date: Wed, 8 Feb 2023 11:13:28 +0000 (+0100) Subject: driver core: bus: constify bus_get_kset() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f91482be9b480dfce2616f5ba3fa548b8ed41efb;p=users%2Fjedix%2Flinux-maple.git driver core: bus: constify bus_get_kset() The bus_get_kset() function should be taking a const * to bus_type, not just a * so fix that up. Cc: "Rafael J. Wysocki" Link: https://lore.kernel.org/r/20230208111330.439504-20-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 0920fb117896c..c394727b8253c 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c @@ -987,7 +987,7 @@ void bus_notify(struct device *dev, enum bus_notifier_event value) subsys_put(sp); } -struct kset *bus_get_kset(struct bus_type *bus) +struct kset *bus_get_kset(const struct bus_type *bus) { struct subsys_private *sp = bus_to_subsys(bus); struct kset *kset; diff --git a/include/linux/device/bus.h b/include/linux/device/bus.h index c0a034ff59b7e..425d79d6cf69b 100644 --- a/include/linux/device/bus.h +++ b/include/linux/device/bus.h @@ -281,6 +281,6 @@ enum bus_notifier_event { BUS_NOTIFY_DRIVER_NOT_BOUND, }; -extern struct kset *bus_get_kset(struct bus_type *bus); +extern struct kset *bus_get_kset(const struct bus_type *bus); #endif