Commit d62f5562 authored by Bruno Ducrot's avatar Bruno Ducrot Committed by Steve French

[PATCH] powernow-k7 typo fix

Due to a typo in powernow-k7.c, the value which correspond
to the CPU core multiplicator and the VID value are swapped
when we go down to up in frequency step.
parent 74ad3755
...@@ -268,8 +268,8 @@ static void change_speed (unsigned int index) ...@@ -268,8 +268,8 @@ static void change_speed (unsigned int index)
change_VID(vid); change_VID(vid);
} else { } else {
/* Going up, so change VID first */ /* Going up, so change VID first */
change_VID(fid); change_VID(vid);
change_FID(vid); change_FID(fid);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment