On Sat, Apr 13, 2024 at 11:01:17PM +0200, Heiner Kallweit wrote: > Constify pcibus_class. All users take a const struct class * argument. > > Signed-off-by: Heiner Kallweit <hkallweit1@xxxxxxxxx> Applied to pci/misc for v6.10, thanks! > --- > drivers/pci/probe.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c > index 1325fbae2..4ec903291 100644 > --- a/drivers/pci/probe.c > +++ b/drivers/pci/probe.c > @@ -95,7 +95,7 @@ static void release_pcibus_dev(struct device *dev) > kfree(pci_bus); > } > > -static struct class pcibus_class = { > +static const struct class pcibus_class = { > .name = "pci_bus", > .dev_release = &release_pcibus_dev, > .dev_groups = pcibus_groups, > -- > 2.44.0 >