Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a44f99c7 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'trivial' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6: (25 commits)
  video: change to new flag variable
  scsi: change to new flag variable
  rtc: change to new flag variable
  rapidio: change to new flag variable
  pps: change to new flag variable
  net: change to new flag variable
  misc: change to new flag variable
  message: change to new flag variable
  memstick: change to new flag variable
  isdn: change to new flag variable
  ieee802154: change to new flag variable
  ide: change to new flag variable
  hwmon: change to new flag variable
  dma: change to new flag variable
  char: change to new flag variable
  fs: change to new flag variable
  xtensa: change to new flag variable
  um: change to new flag variables
  s390: change to new flag variable
  mips: change to new flag variable
  ...

Fix up trivial conflict in drivers/hwmon/Makefile
parents b87a2d3e 22942c00
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -95,8 +95,8 @@ ORIG_CFLAGS := $(KBUILD_CFLAGS)
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
endif
endif


EXTRA_CFLAGS  := -fpic -fno-builtin
ccflags-y := -fpic -fno-builtin
EXTRA_AFLAGS  := -Wa,-march=all
asflags-y := -Wa,-march=all


# Provide size of uncompressed kernel to the decompressor via a linker symbol.
# Provide size of uncompressed kernel to the decompressor via a linker symbol.
LDFLAGS_vmlinux = --defsym _image_size=$(shell stat -c "%s" $(obj)/../Image)
LDFLAGS_vmlinux = --defsym _image_size=$(shell stat -c "%s" $(obj)/../Image)
+2 −2
Original line number Original line Diff line number Diff line
@@ -4,8 +4,8 @@
# Copyright (C) 2001 ARM Limited
# Copyright (C) 2001 ARM Limited
#
#


# EXTRA_CFLAGS := -DDEBUG
# ccflags-y := -DDEBUG
# EXTRA_AFLAGS := -DDEBUG
# asflags-y := -DDEBUG


KBUILD_AFLAGS	:=$(KBUILD_AFLAGS:-msoft-float=-Wa,-mfpu=softvfp+vfp)
KBUILD_AFLAGS	:=$(KBUILD_AFLAGS:-msoft-float=-Wa,-mfpu=softvfp+vfp)
LDFLAGS		+=--no-warn-mismatch
LDFLAGS		+=--no-warn-mismatch
+1 −1
Original line number Original line Diff line number Diff line
@@ -5,7 +5,7 @@
#
#


targets		:= vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o piggy.o
targets		:= vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o piggy.o
EXTRA_AFLAGS	:= -traditional
asflags-y	:= -traditional


OBJECTS = $(obj)/head.o $(obj)/misc.o
OBJECTS = $(obj)/head.o $(obj)/misc.o


+2 −2
Original line number Original line Diff line number Diff line
@@ -45,8 +45,8 @@ FORCE : $(obj)/$(offsets-file)
# Makefile for Kernel-based Virtual Machine module
# Makefile for Kernel-based Virtual Machine module
#
#


EXTRA_CFLAGS += -Ivirt/kvm -Iarch/ia64/kvm/
ccflags-y := -Ivirt/kvm -Iarch/ia64/kvm/
EXTRA_AFLAGS += -Ivirt/kvm -Iarch/ia64/kvm/
asflags-y := -Ivirt/kvm -Iarch/ia64/kvm/


common-objs = $(addprefix ../../../virt/kvm/, kvm_main.o ioapic.o \
common-objs = $(addprefix ../../../virt/kvm/, kvm_main.o ioapic.o \
		coalesced_mmio.o irq_comm.o assigned-dev.o)
		coalesced_mmio.o irq_comm.o assigned-dev.o)
+1 −1
Original line number Original line Diff line number Diff line
@@ -7,7 +7,7 @@
# Copyright (C) 1999,2001-2006,2008 Silicon Graphics, Inc.  All Rights Reserved.
# Copyright (C) 1999,2001-2006,2008 Silicon Graphics, Inc.  All Rights Reserved.
#
#


EXTRA_CFLAGS += -Iarch/ia64/sn/include
ccflags-y := -Iarch/ia64/sn/include


obj-y				+= setup.o bte.o bte_error.o irq.o mca.o idle.o \
obj-y				+= setup.o bte.o bte_error.o irq.o mca.o idle.o \
				   huberror.o io_acpi_init.o io_common.o \
				   huberror.o io_acpi_init.o io_common.o \
Loading