PCI: PCIe portdrv: remove "-driver" from driver name
No need to include "-driver" in the driver name. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> CC: Tom Long Nguyen <tom.l.nguyen@intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
0eca52a927
commit
e3fb20f9c8
@ -30,7 +30,6 @@ MODULE_DESCRIPTION(DRIVER_DESC);
|
|||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
||||||
/* global data */
|
/* global data */
|
||||||
static const char device_name[] = "pcieport-driver";
|
|
||||||
|
|
||||||
static int pcie_portdrv_restore_config(struct pci_dev *dev)
|
static int pcie_portdrv_restore_config(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
@ -262,7 +261,7 @@ static struct pci_error_handlers pcie_portdrv_err_handler = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static struct pci_driver pcie_portdriver = {
|
static struct pci_driver pcie_portdriver = {
|
||||||
.name = (char *)device_name,
|
.name = "pcieport",
|
||||||
.id_table = &port_pci_ids[0],
|
.id_table = &port_pci_ids[0],
|
||||||
|
|
||||||
.probe = pcie_portdrv_probe,
|
.probe = pcie_portdrv_probe,
|
||||||
|
Loading…
Reference in New Issue
Block a user