diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:39:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-18 11:39:24 -0400 |
commit | 188da98800893691e47eea9335a234378e32aceb (patch) | |
tree | 57dbf491d23676e011b4946ec1867a6d55a02eef /drivers/ide/legacy/ali14xx.c | |
parent | 07fe944e87d79f8d7e1b090913fe9f2ace78f41d (diff) | |
parent | 273b8385e5817a4765f82257004c5ec661a6a5b2 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: (58 commits)
ide: remove ide_init_default_irq() macro
ide: move default IDE ports setup to ide_generic host driver
ide: remove obsoleted "idex=noprobe" kernel parameter (take 2)
ide: remove needless hwif->irq check from ide_hwif_configure()
ide: init hwif->{io_ports,irq} explicitly in legacy VLB host drivers
ide: limit legacy VLB host drivers to alpha, x86 and mips
cmd640: init hwif->{io_ports,irq} explicitly
cmd640: cleanup setup_device_ptrs()
ide: add ide-4drives host driver (take 3)
ide: remove ppc ifdef from init_ide_data()
ide: remove ide_default_io_ctl() macro
ide: remove CONFIG_IDE_ARCH_OBSOLETE_INIT
ide: add CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS (take 2)
ppc/pmac: remove no longer needed IDE quirk
ppc: don't include <linux/ide.h>
ppc: remove ppc_ide_md
ppc/pplus: remove ppc_ide_md.ide_init_hwif hook
ppc/sandpoint: remove ppc_ide_md hooks
ppc/lopec: remove ppc_ide_md hooks
ppc/mpc8xx: remove ppc_ide_md hooks
...
Diffstat (limited to 'drivers/ide/legacy/ali14xx.c')
-rw-r--r-- | drivers/ide/legacy/ali14xx.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ide/legacy/ali14xx.c b/drivers/ide/legacy/ali14xx.c index d4d1a6bea599..bc8b1f8de614 100644 --- a/drivers/ide/legacy/ali14xx.c +++ b/drivers/ide/legacy/ali14xx.c | |||
@@ -200,6 +200,7 @@ static const struct ide_port_info ali14xx_port_info = { | |||
200 | static int __init ali14xx_probe(void) | 200 | static int __init ali14xx_probe(void) |
201 | { | 201 | { |
202 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; | 202 | static u8 idx[4] = { 0, 1, 0xff, 0xff }; |
203 | hw_regs_t hw[2]; | ||
203 | 204 | ||
204 | printk(KERN_DEBUG "ali14xx: base=0x%03x, regOn=0x%02x.\n", | 205 | printk(KERN_DEBUG "ali14xx: base=0x%03x, regOn=0x%02x.\n", |
205 | basePort, regOn); | 206 | basePort, regOn); |
@@ -210,6 +211,17 @@ static int __init ali14xx_probe(void) | |||
210 | return 1; | 211 | return 1; |
211 | } | 212 | } |
212 | 213 | ||
214 | memset(&hw, 0, sizeof(hw)); | ||
215 | |||
216 | ide_std_init_ports(&hw[0], 0x1f0, 0x3f6); | ||
217 | hw[0].irq = 14; | ||
218 | |||
219 | ide_std_init_ports(&hw[1], 0x170, 0x376); | ||
220 | hw[1].irq = 15; | ||
221 | |||
222 | ide_init_port_hw(&ide_hwifs[0], &hw[0]); | ||
223 | ide_init_port_hw(&ide_hwifs[1], &hw[1]); | ||
224 | |||
213 | ide_hwifs[0].set_pio_mode = &ali14xx_set_pio_mode; | 225 | ide_hwifs[0].set_pio_mode = &ali14xx_set_pio_mode; |
214 | ide_hwifs[1].set_pio_mode = &ali14xx_set_pio_mode; | 226 | ide_hwifs[1].set_pio_mode = &ali14xx_set_pio_mode; |
215 | 227 | ||