diff options
author | minskey guo <chaohong.guo@linux.intel.com> | 2010-09-17 02:02:37 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-10-05 14:58:54 -0400 |
commit | 6230d18cc7c4c68b7a38ea73bf5910e7652e5b21 (patch) | |
tree | 80d8a9a68bd3818ed9231d38abb0d845c5c1d552 /drivers/platform/x86/intel_ips.c | |
parent | 3c06806e690885ce978ef180c8f8b6f8c17fb4b4 (diff) |
seqno mask of THM_ITV register is 16bit
The mask of sequence number in THM_ITV register is 16bit width instead
of 8bit.
Signed-off-by: minskey guo <chaohong.guo@intel.com>
Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/intel_ips.c')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 9024480a8228..fb317007e3e5 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c | |||
@@ -230,7 +230,7 @@ | |||
230 | #define THM_TC2 0xac | 230 | #define THM_TC2 0xac |
231 | #define THM_DTV 0xb0 | 231 | #define THM_DTV 0xb0 |
232 | #define THM_ITV 0xd8 | 232 | #define THM_ITV 0xd8 |
233 | #define ITV_ME_SEQNO_MASK 0x000f0000 /* ME should update every ~200ms */ | 233 | #define ITV_ME_SEQNO_MASK 0x00ff0000 /* ME should update every ~200ms */ |
234 | #define ITV_ME_SEQNO_SHIFT (16) | 234 | #define ITV_ME_SEQNO_SHIFT (16) |
235 | #define ITV_MCH_TEMP_MASK 0x0000ff00 | 235 | #define ITV_MCH_TEMP_MASK 0x0000ff00 |
236 | #define ITV_MCH_TEMP_SHIFT (8) | 236 | #define ITV_MCH_TEMP_SHIFT (8) |