projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7a8db8
)
pata_hpt366: fix clock detection
author
Tejun Heo
<tj@kernel.org>
Mon, 8 Dec 2008 09:48:42 +0000
(18:48 +0900)
committer
Jeff Garzik
<jgarzik@redhat.com>
Tue, 9 Dec 2008 05:43:40 +0000
(
00:43
-0500)
pata_hpt366 had its clock detection wrong and detected 25Mhz as 40Mhz
and vice-versa. Fix it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/ata/pata_hpt366.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/ata/pata_hpt366.c
b/drivers/ata/pata_hpt366.c
index f2b83eabc7c7cd2bb59ba198df4f5c85b7b20355..a098ba8eaab6141ed52ec9e90666cbe0b8081cc3 100644
(file)
--- a/
drivers/ata/pata_hpt366.c
+++ b/
drivers/ata/pata_hpt366.c
@@
-382,10
+382,10
@@
static int hpt36x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
/* PCI clocking determines the ATA timing values to use */
/* info_hpt366 is safe against re-entry so we can scribble on it */
switch((reg1 & 0x700) >> 8) {
- case
5
:
+ case
9
:
hpriv = &hpt366_40;
break;
- case
9
:
+ case
5
:
hpriv = &hpt366_25;
break;
default: