diff options
| -rw-r--r-- | drivers/dma/ioat/pci.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/dma/ioat/pci.c b/drivers/dma/ioat/pci.c index 99ec26725bae..fab37d1cf48d 100644 --- a/drivers/dma/ioat/pci.c +++ b/drivers/dma/ioat/pci.c | |||
| @@ -138,15 +138,10 @@ static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_devic | |||
| 138 | if (err) | 138 | if (err) |
| 139 | return err; | 139 | return err; |
| 140 | 140 | ||
| 141 | device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL); | ||
| 142 | if (!device) | ||
| 143 | return -ENOMEM; | ||
| 144 | |||
| 145 | pci_set_master(pdev); | ||
| 146 | |||
| 147 | device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]); | 141 | device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]); |
| 148 | if (!device) | 142 | if (!device) |
| 149 | return -ENOMEM; | 143 | return -ENOMEM; |
| 144 | pci_set_master(pdev); | ||
| 150 | pci_set_drvdata(pdev, device); | 145 | pci_set_drvdata(pdev, device); |
| 151 | 146 | ||
| 152 | device->version = readb(device->reg_base + IOAT_VER_OFFSET); | 147 | device->version = readb(device->reg_base + IOAT_VER_OFFSET); |
