diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2010-01-18 02:18:07 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-19 04:24:57 -0500 |
commit | d23f33de3c7fdc4bcbdd7a75d3f7b7be32caf18e (patch) | |
tree | c8a89fabc481fb43f59e729a473b897a77274736 /drivers/ide/alim15x3.c | |
parent | 5f6bd68ef539402b25e25d5e3324c59004541d77 (diff) |
alim15x3: cleanup ali_cable_detect()
Remove leftover local_irq_[save,restore]() and FIXME note.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide/alim15x3.c')
-rw-r--r-- | drivers/ide/alim15x3.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/ide/alim15x3.c b/drivers/ide/alim15x3.c index dabd986216fe..8f03cce055fa 100644 --- a/drivers/ide/alim15x3.c +++ b/drivers/ide/alim15x3.c | |||
@@ -345,19 +345,13 @@ static int ali_cable_override(struct pci_dev *pdev) | |||
345 | * | 345 | * |
346 | * This checks if the controller and the cable are capable | 346 | * This checks if the controller and the cable are capable |
347 | * of UDMA66 transfers. It doesn't check the drives. | 347 | * of UDMA66 transfers. It doesn't check the drives. |
348 | * But see note 2 below! | ||
349 | * | ||
350 | * FIXME: frobs bits that are not defined on newer ALi devicea | ||
351 | */ | 348 | */ |
352 | 349 | ||
353 | static u8 ali_cable_detect(ide_hwif_t *hwif) | 350 | static u8 ali_cable_detect(ide_hwif_t *hwif) |
354 | { | 351 | { |
355 | struct pci_dev *dev = to_pci_dev(hwif->dev); | 352 | struct pci_dev *dev = to_pci_dev(hwif->dev); |
356 | unsigned long flags; | ||
357 | u8 cbl = ATA_CBL_PATA40, tmpbyte; | 353 | u8 cbl = ATA_CBL_PATA40, tmpbyte; |
358 | 354 | ||
359 | local_irq_save(flags); | ||
360 | |||
361 | if (m5229_revision >= 0xC2) { | 355 | if (m5229_revision >= 0xC2) { |
362 | /* | 356 | /* |
363 | * m5229 80-pin cable detection (from Host View) | 357 | * m5229 80-pin cable detection (from Host View) |
@@ -377,8 +371,6 @@ static u8 ali_cable_detect(ide_hwif_t *hwif) | |||
377 | } | 371 | } |
378 | } | 372 | } |
379 | 373 | ||
380 | local_irq_restore(flags); | ||
381 | |||
382 | return cbl; | 374 | return cbl; |
383 | } | 375 | } |
384 | 376 | ||