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>
diff --git a/drivers/ide/buddha.c b/drivers/ide/buddha.c
index c5a3c9e..c0fa761 100644
--- a/drivers/ide/buddha.c
+++ b/drivers/ide/buddha.c
@@ -143,6 +143,10 @@
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 @@
hws[i] = &hw[i];
}
- ide_host_add(NULL, hws, NULL);
+ ide_host_add(&buddha_port_info, hws, NULL);
}
return 0;