Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71344
b: refs/heads/master
c: 1afa655
h: refs/heads/master
v: v3
  • Loading branch information
Auke Kok authored and Bartlomiej Zolnierkiewicz committed Oct 18, 2007
1 parent f34b817 commit 958384c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a84f3eeddfe367cbb5bf794eb482e3d466f098df
refs/heads/master: 1afa65549266a2094d985508a88ab41d9c40ab44
14 changes: 4 additions & 10 deletions trunk/drivers/ide/pci/cmd64x.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,11 +439,8 @@ static unsigned int __devinit init_chipset_cmd64x(struct pci_dev *dev, const cha
u8 mrdmode = 0;

if (dev->device == PCI_DEVICE_ID_CMD_646) {
u8 rev = 0;

pci_read_config_byte(dev, PCI_REVISION_ID, &rev);

switch (rev) {
switch (dev->revision) {
case 0x07:
case 0x05:
printk("%s: UltraDMA capable\n", name);
Expand Down Expand Up @@ -505,9 +502,6 @@ static u8 __devinit ata66_cmd64x(ide_hwif_t *hwif)
static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif)
{
struct pci_dev *dev = hwif->pci_dev;
u8 rev = 0;

pci_read_config_byte(dev, PCI_REVISION_ID, &rev);

hwif->set_pio_mode = &cmd64x_set_pio_mode;
hwif->set_dma_mode = &cmd64x_set_dma_mode;
Expand All @@ -529,7 +523,7 @@ static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif)
*
* So we only do UltraDMA on revision 0x05 and 0x07 chipsets.
*/
if (dev->device == PCI_DEVICE_ID_CMD_646 && rev < 5)
if (dev->device == PCI_DEVICE_ID_CMD_646 && dev->revision < 5)
hwif->ultra_mask = 0x00;

if (hwif->cbl != ATA_CBL_PATA40_SHORT)
Expand All @@ -544,10 +538,10 @@ static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif)
break;
case PCI_DEVICE_ID_CMD_646:
hwif->chipset = ide_cmd646;
if (rev == 0x01) {
if (dev->revision == 0x01) {
hwif->ide_dma_end = &cmd646_1_ide_dma_end;
break;
} else if (rev >= 0x03)
} else if (dev->revision >= 0x03)
goto alt_irq_bits;
/* fall thru */
default:
Expand Down

0 comments on commit 958384c

Please sign in to comment.