diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2010-09-02 14:28:51 -0700 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-10-15 13:09:49 -0700 |
commit | 42b219322a97ccef347388b233aceaafe3fa517d (patch) | |
tree | eb810f27080a9eab5cee2e52413fcc46788d7a15 /include/linux/pci.h | |
parent | 5a37f1381f1d8625fa458360c9b5d17f0c5f1dea (diff) | |
download | op-kernel-dev-42b219322a97ccef347388b233aceaafe3fa517d.zip op-kernel-dev-42b219322a97ccef347388b233aceaafe3fa517d.tar.gz |
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 <shemminger@vyatta.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index c8d95e3..30faf4f 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) */ |