forked from Minki/linux
09198e6850
- Introduce a wd_ops structure - Convert the various nmi watchdogs over to it - This allows to split the perfctr reservation from the watchdog setup cleanly. - Do perfctr reservation globally as it should have always been - Remove dead code referenced only by unused EXPORT_SYMBOLs Signed-off-by: Andi Kleen <ak@suse.de>
22 lines
398 B
Makefile
22 lines
398 B
Makefile
#
|
|
# Makefile for x86-compatible CPU details and quirks
|
|
#
|
|
|
|
obj-y := common.o proc.o bugs.o
|
|
|
|
obj-y += amd.o
|
|
obj-y += cyrix.o
|
|
obj-y += centaur.o
|
|
obj-y += transmeta.o
|
|
obj-y += intel.o intel_cacheinfo.o
|
|
obj-y += rise.o
|
|
obj-y += nexgen.o
|
|
obj-y += umc.o
|
|
|
|
obj-$(CONFIG_X86_MCE) += mcheck/
|
|
|
|
obj-$(CONFIG_MTRR) += mtrr/
|
|
obj-$(CONFIG_CPU_FREQ) += cpufreq/
|
|
|
|
obj-$(CONFIG_X86_LOCAL_APIC) += perfctr-watchdog.o
|