Skip to content

Commit 80b60e3

Browse files
committed
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull core fixes from Ingo Molnar: "Three objtool fixes, plus marking SFI as obsolete" * 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Skip samples subdirectory objtool: Fix ARCH=x86_64 build error objtool: Silence build output MAINTAINERS: Mark simple firmware interface (SFI) obsolete
2 parents 701a9c8 + 74777ea commit 80b60e3

File tree

4 files changed

+3
-11
lines changed

4 files changed

+3
-11
lines changed

MAINTAINERS

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15177,11 +15177,8 @@ F: drivers/video/fbdev/sm712*
1517715177
F: Documentation/fb/sm712fb.rst
1517815178

1517915179
SIMPLE FIRMWARE INTERFACE (SFI)
15180-
M: Len Brown <[email protected]>
15181-
1518215180
W: http://simplefirmware.org/
15183-
T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
15184-
S: Supported
15181+
S: Obsolete
1518515182
F: arch/x86/platform/sfi/
1518615183
F: drivers/sfi/
1518715184
F: include/linux/sfi*.h

samples/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# SPDX-License-Identifier: GPL-2.0
22
# Makefile for Linux samples code
3+
OBJECT_FILES_NON_STANDARD := y
34

45
obj-$(CONFIG_SAMPLE_ANDROID_BINDERFS) += binderfs/
56
obj-$(CONFIG_SAMPLE_CONFIGFS) += configfs/

tools/objtool/Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
include ../scripts/Makefile.include
33
include ../scripts/Makefile.arch
44

5-
ifeq ($(ARCH),x86_64)
6-
ARCH := x86
7-
endif
8-
95
# always use the host compiler
106
HOSTAR ?= ar
117
HOSTCC ?= gcc
@@ -33,7 +29,7 @@ all: $(OBJTOOL)
3329

3430
INCLUDES := -I$(srctree)/tools/include \
3531
-I$(srctree)/tools/arch/$(HOSTARCH)/include/uapi \
36-
-I$(srctree)/tools/arch/$(ARCH)/include
32+
-I$(srctree)/tools/arch/$(SRCARCH)/include
3733
WARNINGS := $(EXTRA_WARNINGS) -Wno-switch-default -Wno-switch-enum -Wno-packed
3834
CFLAGS := -Werror $(WARNINGS) $(KBUILD_HOSTCFLAGS) -g $(INCLUDES) $(LIBELF_FLAGS)
3935
LDFLAGS += $(LIBELF_LIBS) $(LIBSUBCMD) $(KBUILD_HOSTLDFLAGS)

tools/objtool/sync-check.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,3 @@ check arch/x86/include/asm/inat.h '-I "^#include [\"<]\(asm/\)*inat_types.h[
4848
check arch/x86/include/asm/insn.h '-I "^#include [\"<]\(asm/\)*inat.h[\">]"'
4949
check arch/x86/lib/inat.c '-I "^#include [\"<]\(../include/\)*asm/insn.h[\">]"'
5050
check arch/x86/lib/insn.c '-I "^#include [\"<]\(../include/\)*asm/in\(at\|sn\).h[\">]" -I "^#include [\"<]\(../include/\)*asm/emulate_prefix.h[\">]"'
51-
52-
cd -

0 commit comments

Comments
 (0)