projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e518e58
)
ide-pnp: use struct ide_port_info
author
Bartlomiej Zolnierkiewicz
<bzolnier@gmail.com>
Fri, 27 Mar 2009 11:46:18 +0000
(12:46 +0100)
committer
Bartlomiej Zolnierkiewicz
<bzolnier@gmail.com>
Fri, 27 Mar 2009 11:46:18 +0000
(12:46 +0100)
This fixes hwif->channel and drive->dn assignments.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
drivers/ide/ide-pnp.c
patch
|
blob
|
history
diff --git
a/drivers/ide/ide-pnp.c
b/drivers/ide/ide-pnp.c
index bac9b392b68967dfde75c6344cc8af9c6277e79d..6e80b774e88a8fb538c08d98298775eb3514eee0 100644
(file)
--- a/
drivers/ide/ide-pnp.c
+++ b/
drivers/ide/ide-pnp.c
@@
-27,6
+27,10
@@
static struct pnp_device_id idepnp_devices[] = {
{.id = ""}
};
+static const struct ide_port_info ide_pnp_port_info = {
+ .host_flags = IDE_HFLAG_NO_DMA,
+};
+
static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
{
struct ide_host *host;
@@
-60,7
+64,7
@@
static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
hw.irq = pnp_irq(dev, 0);
hw.chipset = ide_generic;
- rc = ide_host_add(
NULL
, hws, &host);
+ rc = ide_host_add(
&ide_pnp_port_info
, hws, &host);
if (rc)
goto out;