The patch titled
m68knommu: use asflags instead of EXTRA_AFLAGS
has been removed from the -mm tree. Its filename was
m68knommu-use-asflags-instead-of-extra_aflags.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: m68knommu: use asflags instead of EXTRA_AFLAGS
From: Greg Ungerer <[EMAIL PROTECTED]>
Modify the extra asm flags for debugger capabilities, use asflags instead for
EXTRA_AFLAGS. Suggestion from Sam Ravnborg.
Signed-off-by: Greg Ungerer <[EMAIL PROTECTED]>
Cc: Sam Ravnborg <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
arch/m68knommu/platform/5206/Makefile | 4 +---
arch/m68knommu/platform/5206e/Makefile | 4 +---
arch/m68knommu/platform/520x/Makefile | 4 +---
arch/m68knommu/platform/523x/Makefile | 4 +---
arch/m68knommu/platform/5249/Makefile | 4 +---
arch/m68knommu/platform/5272/Makefile | 4 +---
arch/m68knommu/platform/527x/Makefile | 4 +---
arch/m68knommu/platform/528x/Makefile | 4 +---
arch/m68knommu/platform/5307/Makefile | 4 +---
arch/m68knommu/platform/532x/Makefile | 4 +---
arch/m68knommu/platform/5407/Makefile | 4 +---
arch/m68knommu/platform/coldfire/Makefile | 4 +---
12 files changed, 12 insertions(+), 36 deletions(-)
diff -puN
arch/m68knommu/platform/5206/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5206/Makefile
---
a/arch/m68knommu/platform/5206/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5206/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/5206e/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5206e/Makefile
---
a/arch/m68knommu/platform/5206e/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5206e/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/520x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/520x/Makefile
---
a/arch/m68knommu/platform/520x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/520x/Makefile
@@ -12,8 +12,6 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/523x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/523x/Makefile
---
a/arch/m68knommu/platform/523x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/523x/Makefile
@@ -12,8 +12,6 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/5249/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5249/Makefile
---
a/arch/m68knommu/platform/5249/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5249/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/5272/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5272/Makefile
---
a/arch/m68knommu/platform/5272/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5272/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/527x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/527x/Makefile
---
a/arch/m68knommu/platform/527x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/527x/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/528x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/528x/Makefile
---
a/arch/m68knommu/platform/528x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/528x/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/5307/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5307/Makefile
---
a/arch/m68knommu/platform/5307/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5307/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y += config.o
diff -puN
arch/m68knommu/platform/532x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/532x/Makefile
---
a/arch/m68knommu/platform/532x/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/532x/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
#obj-y := config.o usb-mcf532x.o spi-mcf532x.o
obj-y := config.o
diff -puN
arch/m68knommu/platform/5407/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/5407/Makefile
---
a/arch/m68knommu/platform/5407/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/5407/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-y := config.o
diff -puN
arch/m68knommu/platform/coldfire/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
arch/m68knommu/platform/coldfire/Makefile
---
a/arch/m68knommu/platform/coldfire/Makefile~m68knommu-use-asflags-instead-of-extra_aflags
+++ a/arch/m68knommu/platform/coldfire/Makefile
@@ -12,9 +12,7 @@
# EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT
#
-ifdef CONFIG_FULLDEBUG
-AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1
-endif
+asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1
obj-$(CONFIG_COLDFIRE) += dma.o entry.o vectors.o
obj-$(CONFIG_M5206) += timers.o
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html