diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 11:42:45 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 11:42:45 -0400 |
| commit | 5a5a1bf099d6942399ea0b34a62e5f0bc4c5c36e (patch) | |
| tree | df094aa1544281ec0894eee48ad60c9d000a18ba /arch/x86/include | |
| parent | 74c7d2f5200a340ae6655e9adcf990381e387937 (diff) | |
| parent | 5379f8c0d72cab43bbe6d974ceb3ad84dddc2b8e (diff) | |
Merge branch 'x86-ras-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 RAS changes from Ingo Molnar:
- Add an Intel CMCI hotplug fix
- Add AMD family 16h EDAC support
- Make the AMD MCE banks code more flexible for virtual environments
* 'x86-ras-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
amd64_edac: Add Family 16h support
x86/mce: Rework cmci_rediscover() to play well with CPU hotplug
x86, MCE, AMD: Use MCG_CAP MSR to find out number of banks on AMD
x86, MCE, AMD: Replace shared_bank array with is_shared_bank() helper
Diffstat (limited to 'arch/x86/include')
| -rw-r--r-- | arch/x86/include/asm/mce.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index f4076af1f4ed..fa5f71e021d5 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h | |||
| @@ -146,13 +146,13 @@ DECLARE_PER_CPU(struct device *, mce_device); | |||
| 146 | void mce_intel_feature_init(struct cpuinfo_x86 *c); | 146 | void mce_intel_feature_init(struct cpuinfo_x86 *c); |
| 147 | void cmci_clear(void); | 147 | void cmci_clear(void); |
| 148 | void cmci_reenable(void); | 148 | void cmci_reenable(void); |
| 149 | void cmci_rediscover(int dying); | 149 | void cmci_rediscover(void); |
| 150 | void cmci_recheck(void); | 150 | void cmci_recheck(void); |
| 151 | #else | 151 | #else |
| 152 | static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { } | 152 | static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { } |
| 153 | static inline void cmci_clear(void) {} | 153 | static inline void cmci_clear(void) {} |
| 154 | static inline void cmci_reenable(void) {} | 154 | static inline void cmci_reenable(void) {} |
| 155 | static inline void cmci_rediscover(int dying) {} | 155 | static inline void cmci_rediscover(void) {} |
| 156 | static inline void cmci_recheck(void) {} | 156 | static inline void cmci_recheck(void) {} |
| 157 | #endif | 157 | #endif |
| 158 | 158 | ||
