projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2bd580
)
[libata ata_piix] Fix ICH6/7 map value interpretation
author
Jeff Garzik
<jgarzik@pobox.com>
Sat, 28 Jan 2006 17:26:23 +0000
(12:26 -0500)
committer
Jeff Garzik
<jgarzik@pobox.com>
Sat, 28 Jan 2006 17:26:23 +0000
(12:26 -0500)
The previous change failed to properly mask out unrelated bits, which
resulted in a failure to detect devices.
drivers/scsi/ata_piix.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/ata_piix.c
b/drivers/scsi/ata_piix.c
index
19d8d4b
..
2d984b0
100644
(file)
--- a/
drivers/scsi/ata_piix.c
+++ b/
drivers/scsi/ata_piix.c
@@
-713,7
+713,7
@@
static int piix_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
pci_read_config_byte(pdev, ICH5_PMR, &tmp);
if (host_flags & PIIX_FLAG_COMBINED_ICH6) {
- switch (tmp) {
+ switch (tmp
& 0x3
) {
case 0:
break;
case 1: