diff options
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/platform-pci.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c index c01b5ddce529..afbe041f42c5 100644 --- a/drivers/xen/platform-pci.c +++ b/drivers/xen/platform-pci.c | |||
@@ -105,7 +105,7 @@ static int __devinit platform_pci_init(struct pci_dev *pdev, | |||
105 | const struct pci_device_id *ent) | 105 | const struct pci_device_id *ent) |
106 | { | 106 | { |
107 | int i, ret; | 107 | int i, ret; |
108 | long ioaddr, iolen; | 108 | long ioaddr; |
109 | long mmio_addr, mmio_len; | 109 | long mmio_addr, mmio_len; |
110 | unsigned int max_nr_gframes; | 110 | unsigned int max_nr_gframes; |
111 | 111 | ||
@@ -114,7 +114,6 @@ static int __devinit platform_pci_init(struct pci_dev *pdev, | |||
114 | return i; | 114 | return i; |
115 | 115 | ||
116 | ioaddr = pci_resource_start(pdev, 0); | 116 | ioaddr = pci_resource_start(pdev, 0); |
117 | iolen = pci_resource_len(pdev, 0); | ||
118 | 117 | ||
119 | mmio_addr = pci_resource_start(pdev, 1); | 118 | mmio_addr = pci_resource_start(pdev, 1); |
120 | mmio_len = pci_resource_len(pdev, 1); | 119 | mmio_len = pci_resource_len(pdev, 1); |
@@ -125,19 +124,13 @@ static int __devinit platform_pci_init(struct pci_dev *pdev, | |||
125 | goto pci_out; | 124 | goto pci_out; |
126 | } | 125 | } |
127 | 126 | ||
128 | if (request_mem_region(mmio_addr, mmio_len, DRV_NAME) == NULL) { | 127 | ret = pci_request_region(pdev, 1, DRV_NAME); |
129 | dev_err(&pdev->dev, "MEM I/O resource 0x%lx @ 0x%lx busy\n", | 128 | if (ret < 0) |
130 | mmio_addr, mmio_len); | ||
131 | ret = -EBUSY; | ||
132 | goto pci_out; | 129 | goto pci_out; |
133 | } | ||
134 | 130 | ||
135 | if (request_region(ioaddr, iolen, DRV_NAME) == NULL) { | 131 | ret = pci_request_region(pdev, 0, DRV_NAME); |
136 | dev_err(&pdev->dev, "I/O resource 0x%lx @ 0x%lx busy\n", | 132 | if (ret < 0) |
137 | iolen, ioaddr); | ||
138 | ret = -EBUSY; | ||
139 | goto mem_out; | 133 | goto mem_out; |
140 | } | ||
141 | 134 | ||
142 | platform_mmio = mmio_addr; | 135 | platform_mmio = mmio_addr; |
143 | platform_mmiolen = mmio_len; | 136 | platform_mmiolen = mmio_len; |
@@ -169,9 +162,9 @@ static int __devinit platform_pci_init(struct pci_dev *pdev, | |||
169 | return 0; | 162 | return 0; |
170 | 163 | ||
171 | out: | 164 | out: |
172 | release_region(ioaddr, iolen); | 165 | pci_release_region(pdev, 0); |
173 | mem_out: | 166 | mem_out: |
174 | release_mem_region(mmio_addr, mmio_len); | 167 | pci_release_region(pdev, 1); |
175 | pci_out: | 168 | pci_out: |
176 | pci_disable_device(pdev); | 169 | pci_disable_device(pdev); |
177 | return ret; | 170 | return ret; |