diff options
author | Guenter Roeck <linux@roeck-us.net> | 2012-01-19 14:02:18 -0500 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-18 21:26:53 -0400 |
commit | 86d566e58edc578f12fe070e1671944889e4d391 (patch) | |
tree | 678c44f0b142791dc4f049f86c08804af4f51b2b /drivers/hwmon/hwmon-vid.c | |
parent | 5ed04880a3399a0bb0bb5eb886316b8a722b1a7b (diff) |
hwmon: (hwmon-vid) Fix multi-line comments
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/hwmon-vid.c')
-rw-r--r-- | drivers/hwmon/hwmon-vid.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/hwmon/hwmon-vid.c b/drivers/hwmon/hwmon-vid.c index 4fcb867122ec..4029ac618d71 100644 --- a/drivers/hwmon/hwmon-vid.c +++ b/drivers/hwmon/hwmon-vid.c | |||
@@ -40,7 +40,7 @@ | |||
40 | * available at http://developer.intel.com/. | 40 | * available at http://developer.intel.com/. |
41 | * | 41 | * |
42 | * AMD Athlon 64 and AMD Opteron Processors, AMD Publication 26094, | 42 | * AMD Athlon 64 and AMD Opteron Processors, AMD Publication 26094, |
43 | * http://support.amd.com/us/Processor_TechDocs/26094.PDF | 43 | * http://support.amd.com/us/Processor_TechDocs/26094.PDF |
44 | * Table 74. VID Code Voltages | 44 | * Table 74. VID Code Voltages |
45 | * This corresponds to an arbitrary VRM code of 24 in the functions below. | 45 | * This corresponds to an arbitrary VRM code of 24 in the functions below. |
46 | * These CPU models (K8 revision <= E) have 5 VID pins. See also: | 46 | * These CPU models (K8 revision <= E) have 5 VID pins. See also: |
@@ -185,10 +185,12 @@ struct vrm_model { | |||
185 | static struct vrm_model vrm_models[] = { | 185 | static struct vrm_model vrm_models[] = { |
186 | {X86_VENDOR_AMD, 0x6, ANY, ANY, 90}, /* Athlon Duron etc */ | 186 | {X86_VENDOR_AMD, 0x6, ANY, ANY, 90}, /* Athlon Duron etc */ |
187 | {X86_VENDOR_AMD, 0xF, 0x3F, ANY, 24}, /* Athlon 64, Opteron */ | 187 | {X86_VENDOR_AMD, 0xF, 0x3F, ANY, 24}, /* Athlon 64, Opteron */ |
188 | /* In theory, all NPT family 0Fh processors have 6 VID pins and should | 188 | /* |
189 | thus use vrm 25, however in practice not all mainboards route the | 189 | * In theory, all NPT family 0Fh processors have 6 VID pins and should |
190 | 6th VID pin because it is never needed. So we use the 5 VID pin | 190 | * thus use vrm 25, however in practice not all mainboards route the |
191 | variant (vrm 24) for the models which exist today. */ | 191 | * 6th VID pin because it is never needed. So we use the 5 VID pin |
192 | * variant (vrm 24) for the models which exist today. | ||
193 | */ | ||
192 | {X86_VENDOR_AMD, 0xF, 0x7F, ANY, 24}, /* NPT family 0Fh */ | 194 | {X86_VENDOR_AMD, 0xF, 0x7F, ANY, 24}, /* NPT family 0Fh */ |
193 | {X86_VENDOR_AMD, 0xF, ANY, ANY, 25}, /* future fam. 0Fh */ | 195 | {X86_VENDOR_AMD, 0xF, ANY, ANY, 25}, /* future fam. 0Fh */ |
194 | {X86_VENDOR_AMD, 0x10, ANY, ANY, 25}, /* NPT family 10h */ | 196 | {X86_VENDOR_AMD, 0x10, ANY, ANY, 25}, /* NPT family 10h */ |