xen: Use dev_is_pci() to check whether it is pci device
authorYijing Wang <wangyijing@huawei.com>
Thu, 5 Dec 2013 11:34:05 +0000 (19:34 +0800)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 7 Jan 2014 14:53:33 +0000 (09:53 -0500)
Use PCI standard marco dev_is_pci() instead of directly compare
pci_bus_type to check whether it is pci device.

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Jan Beulich <JBeulich@suse.com>
drivers/xen/dbgp.c

index f3ccc80..8145a59 100644 (file)
@@ -19,7 +19,7 @@ static int xen_dbgp_op(struct usb_hcd *hcd, int op)
        dbgp.op = op;
 
 #ifdef CONFIG_PCI
-       if (ctrlr->bus == &pci_bus_type) {
+       if (dev_is_pci(ctrlr)) {
                const struct pci_dev *pdev = to_pci_dev(ctrlr);
 
                dbgp.u.pci.seg = pci_domain_nr(pdev->bus);