From: Stephen Hemminger Date: Thu, 2 Sep 2010 21:28:51 +0000 (-0700) Subject: PCI: pci_driver make name const X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=42b219322a97ccef347388b233aceaafe3fa517d;p=openwrt%2Fstaging%2Fblogic.git PCI: pci_driver make name const The name field in pci_driver should be const, it is not modified by PCI subsystem. Signed-off-by: Stephen Hemminger Signed-off-by: Jesse Barnes --- diff --git a/include/linux/pci.h b/include/linux/pci.h index c8d95e369ff4..30faf4f3db0b 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -541,7 +541,7 @@ struct pci_error_handlers { struct module; struct pci_driver { struct list_head node; - char *name; + const char *name; const struct pci_device_id *id_table; /* must be non-NULL for probe to be called */ int (*probe) (struct pci_dev *dev, const struct pci_device_id *id); /* New device inserted */ void (*remove) (struct pci_dev *dev); /* Device removed (NULL if not a hot-plug capable driver) */