ide-h8300: use struct ide_port_info

Convert the driver to use struct ide_port_info.

There should be no functional changes caused by this patch.
Signed-off-by: NBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
上级 9a5ae1fa
...@@ -176,6 +176,10 @@ static inline void hwif_setup(ide_hwif_t *hwif) ...@@ -176,6 +176,10 @@ static inline void hwif_setup(ide_hwif_t *hwif)
hwif->output_data = h8300_output_data; hwif->output_data = h8300_output_data;
} }
static const struct ide_port_info h8300_port_info = {
.host_flags = IDE_HFLAG_NO_IO_32BIT | IDE_HFLAG_NO_DMA,
};
static int __init h8300_ide_init(void) static int __init h8300_ide_init(void)
{ {
hw_regs_t hw; hw_regs_t hw;
...@@ -201,12 +205,11 @@ static int __init h8300_ide_init(void) ...@@ -201,12 +205,11 @@ static int __init h8300_ide_init(void)
index = hwif->index; index = hwif->index;
ide_init_port_hw(hwif, &hw); ide_init_port_hw(hwif, &hw);
hwif_setup(hwif); hwif_setup(hwif);
hwif->host_flags = IDE_HFLAG_NO_IO_32BIT;
printk(KERN_INFO "ide%d: H8/300 generic IDE interface\n", index); printk(KERN_INFO "ide%d: H8/300 generic IDE interface\n", index);
idx[0] = index; idx[0] = index;
ide_device_add(idx, NULL); ide_device_add(idx, &h8300_port_info);
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册