Merge branches 'x86-build-for-linus', 'x86-cleanups-for-linus' and 'x86-debug-for...
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 10 Dec 2014 20:35:46 +0000 (12:35 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 10 Dec 2014 20:35:46 +0000 (12:35 -0800)
Pull x86 build, cleanup and defconfig updates from Ingo Molnar:
 "A single minor build change to suppress a repetitive build messages,
  misc cleanups and a defconfig update"

* 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/purgatory, build: Suppress kexec-purgatory.c is up to date message

* 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86, CPU, AMD: Move K8 TLB flush filter workaround to K8 code
  x86, espfix: Remove stale ptemask
  x86, msr: Use seek definitions instead of hard-coded values
  x86, msr: Convert printk to pr_foo()
  x86, msr: Use PTR_ERR_OR_ZERO
  x86/simplefb: Use PTR_ERR_OR_ZERO
  x86/sysfb: Use PTR_ERR_OR_ZERO
  x86, cpuid: Use PTR_ERR_OR_ZERO

* 'x86-debug-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/kconfig/defconfig: Enable CONFIG_FHANDLE=y

1  2  3  4 
arch/x86/purgatory/Makefile

index f52e033557c9e0b54c41248101e0d7d7ed7cb76f,2c41066150ba4f753e72fa37a69afbe329341fea,f52e033557c9e0b54c41248101e0d7d7ed7cb76f,f52e033557c9e0b54c41248101e0d7d7ed7cb76f..2c835e356349b9284b6b6997fff19208b6dd1b61
@@@@@ -18,12 -18,12 -18,12 -18,12 +18,13 @@@@@ $(obj)/purgatory.ro: $(PURGATORY_OBJS) 
    
    targets += kexec-purgatory.c
    
 +  CMD_BIN2C = $(objtree)/scripts/basic/bin2c
    quiet_cmd_bin2c = BIN2C   $@
 -        cmd_bin2c = cat $(obj)/purgatory.ro | $(objtree)/scripts/basic/bin2c kexec_purgatory > $(obj)/kexec-purgatory.c
 +        cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
    
    $(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
        $(call if_changed,bin2c)
+ ++    @:
    
    
    obj-$(CONFIG_KEXEC_FILE)    += kexec-purgatory.o