diff options
-rw-r--r-- | drivers/ide/ide-pnp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/ide/ide-pnp.c b/drivers/ide/ide-pnp.c index bac9b392b689..6e80b774e88a 100644 --- a/drivers/ide/ide-pnp.c +++ b/drivers/ide/ide-pnp.c | |||
@@ -27,6 +27,10 @@ static struct pnp_device_id idepnp_devices[] = { | |||
27 | {.id = ""} | 27 | {.id = ""} |
28 | }; | 28 | }; |
29 | 29 | ||
30 | static const struct ide_port_info ide_pnp_port_info = { | ||
31 | .host_flags = IDE_HFLAG_NO_DMA, | ||
32 | }; | ||
33 | |||
30 | static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) | 34 | static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) |
31 | { | 35 | { |
32 | struct ide_host *host; | 36 | struct ide_host *host; |
@@ -60,7 +64,7 @@ static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id) | |||
60 | hw.irq = pnp_irq(dev, 0); | 64 | hw.irq = pnp_irq(dev, 0); |
61 | hw.chipset = ide_generic; | 65 | hw.chipset = ide_generic; |
62 | 66 | ||
63 | rc = ide_host_add(NULL, hws, &host); | 67 | rc = ide_host_add(&ide_pnp_port_info, hws, &host); |
64 | if (rc) | 68 | if (rc) |
65 | goto out; | 69 | goto out; |
66 | 70 | ||