diff options
author | Alessandro Zummo <alessandro.zummo@towertech.it> | 2007-03-18 17:23:33 +0300 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-03-19 18:58:01 +0300 |
commit | 282c6b9c7a344ce6436bb61a006b9c2a373b9626 (patch) | |
tree | d220cda495a713be48c274c0da40adfc8f4ccab3 /drivers/ata/pata_ixp4xx_cf.c | |
parent | 2ab302b3579b76b8c575f0858a8e4b82f6dfca52 (diff) | |
download | linux-282c6b9c7a344ce6436bb61a006b9c2a373b9626.tar.xz |
pata_ixp4xx_cf: fix interrupt
As per compact flash specifications, the default
irq mode upon cf insertion is pulse mode. this patch fixes
the driver to cope with that.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_ixp4xx_cf.c')
-rw-r--r-- | drivers/ata/pata_ixp4xx_cf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_ixp4xx_cf.c b/drivers/ata/pata_ixp4xx_cf.c index bbcc9e7a95a0..c6f0e1927551 100644 --- a/drivers/ata/pata_ixp4xx_cf.c +++ b/drivers/ata/pata_ixp4xx_cf.c @@ -193,7 +193,7 @@ static __devinit int ixp4xx_pata_probe(struct platform_device *pdev) irq = platform_get_irq(pdev, 0); if (irq) - set_irq_type(irq, IRQT_HIGH); + set_irq_type(irq, IRQT_RISING); /* Setup expansion bus chip selects */ *data->cs0_cfg = data->cs0_bits; |