commit f3fc28d52f42220bcce8c2fed12aef2a88c9fadc Author: Konrad Rzeszutek Wilk Date: Wed Apr 20 16:06:47 2011 -0400 xen/pciback: revert the name of the PCI driver to 'pciback'. At least until the toolstack catches up and it will be able to handle 'xen_pciback'. This means we have these directories in sysfs: ./bus/pci/drivers/pciback ./bus/xen-backend/drivers/xen-pciback ./module/xen_pciback Signed-off-by: Konrad Rzeszutek Wilk diff --git a/drivers/pci/xen-pciback/pci_stub.c b/drivers/pci/xen-pciback/pci_stub.c index d802261..aec214a 100644 --- a/drivers/pci/xen-pciback/pci_stub.c +++ b/drivers/pci/xen-pciback/pci_stub.c @@ -848,7 +848,9 @@ static struct pci_error_handlers xen_pcibk_error_handler = { */ static struct pci_driver xen_pcibk_pci_driver = { - .name = DRV_NAME, + /* The name should be xen_pciback, but until the tools are updated + * we will keep it as pciback. */ + .name = "pciback", .id_table = pcistub_ids, .probe = pcistub_probe, .remove = pcistub_remove,