aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/buddha.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 12:46:18 +0100
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2009-03-27 12:46:18 +0100
commit0e78a54fbd574be9da7a49190f7927a656a936c0 (patch)
tree9fc3c5dd5d53e9f95eea34c5d77b75ae18e2a28f /drivers/ide/buddha.c
parentide-pnp: use struct ide_port_info (diff)
downloadlinux-dev-0e78a54fbd574be9da7a49190f7927a656a936c0.tar.xz
linux-dev-0e78a54fbd574be9da7a49190f7927a656a936c0.zip
buddha: use struct ide_port_info
This fixes hwif->channel and drive->dn assignments. Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/buddha.c')
-rw-r--r--drivers/ide/buddha.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/ide/buddha.c b/drivers/ide/buddha.c
index c5a3c9ef6a5d..c0fa76148d46 100644
--- a/drivers/ide/buddha.c
+++ b/drivers/ide/buddha.c
@@ -143,6 +143,10 @@ static void __init buddha_setup_ports(hw_regs_t *hw, unsigned long base,
hw->chipset = ide_generic;
}
+static const struct ide_port_info buddha_port_info = {
+ .host_flags = IDE_HFLAG_NO_DMA,
+};
+
/*
* Probe for a Buddha or Catweasel IDE interface
*/
@@ -224,7 +228,7 @@ fail_base2:
hws[i] = &hw[i];
}
- ide_host_add(NULL, hws, NULL);
+ ide_host_add(&buddha_port_info, hws, NULL);
}
return 0;