aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-30 22:21:03 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-30 22:21:03 -0500
commitc00552ebafddfe6abb397d957004f165e010abd2 (patch)
treeb397d6773b545755ffdae7566f8b96b08ee54ebb /Makefile
parent842f57baab186417d89810f3dd6147f1ef3009dd (diff)
parent009d0431c3914de64666bec0d350e54fdd59df6a (diff)
Merge 3.18-rc7 into usb-next
We need the xhci fixes here and this resolves a merge issue with drivers/usb/dwc3/ep0.c Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index bc7eb6ada966..ce70361f766e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1VERSION = 3 1VERSION = 3
2PATCHLEVEL = 18 2PATCHLEVEL = 18
3SUBLEVEL = 0 3SUBLEVEL = 0
4EXTRAVERSION = -rc4 4EXTRAVERSION = -rc7
5NAME = Diseased Newt 5NAME = Diseased Newt
6 6
7# *DOCUMENTATION* 7# *DOCUMENTATION*
@@ -297,7 +297,7 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
297 297
298HOSTCC = gcc 298HOSTCC = gcc
299HOSTCXX = g++ 299HOSTCXX = g++
300HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer 300HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89
301HOSTCXXFLAGS = -O2 301HOSTCXXFLAGS = -O2
302 302
303ifeq ($(shell $(HOSTCC) -v 2>&1 | grep -c "clang version"), 1) 303ifeq ($(shell $(HOSTCC) -v 2>&1 | grep -c "clang version"), 1)
@@ -401,7 +401,8 @@ KBUILD_CPPFLAGS := -D__KERNEL__
401KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ 401KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
402 -fno-strict-aliasing -fno-common \ 402 -fno-strict-aliasing -fno-common \
403 -Werror-implicit-function-declaration \ 403 -Werror-implicit-function-declaration \
404 -Wno-format-security 404 -Wno-format-security \
405 -std=gnu89
405 406
406KBUILD_AFLAGS_KERNEL := 407KBUILD_AFLAGS_KERNEL :=
407KBUILD_CFLAGS_KERNEL := 408KBUILD_CFLAGS_KERNEL :=