Skip to content

Commit 6ea45c5

Browse files
committed
Merge tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm
Pull ARM fixes from Russell King: - Fix early_iounmap - Drop cc-option fallbacks for architecture selection * tag 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm: ARM: 9156/1: drop cc-option fallbacks for architecture selection ARM: 9155/1: fix early early_iounmap()
2 parents 0d1503d + 418ace9 commit 6ea45c5

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

arch/arm/Makefile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ KBUILD_CFLAGS += $(call cc-option,-fno-ipa-sra)
6060
# Note that GCC does not numerically define an architecture version
6161
# macro, but instead defines a whole series of macros which makes
6262
# testing for a specific architecture or later rather impossible.
63-
arch-$(CONFIG_CPU_32v7M) =-D__LINUX_ARM_ARCH__=7 -march=armv7-m -Wa,-march=armv7-m
64-
arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a)
65-
arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6)
63+
arch-$(CONFIG_CPU_32v7M) =-D__LINUX_ARM_ARCH__=7 -march=armv7-m
64+
arch-$(CONFIG_CPU_32v7) =-D__LINUX_ARM_ARCH__=7 -march=armv7-a
65+
arch-$(CONFIG_CPU_32v6) =-D__LINUX_ARM_ARCH__=6 -march=armv6
6666
# Only override the compiler option if ARMv6. The ARMv6K extensions are
6767
# always available in ARMv7
6868
ifeq ($(CONFIG_CPU_32v6),y)
69-
arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6k,-march=armv5t -Wa$(comma)-march=armv6k)
69+
arch-$(CONFIG_CPU_32v6K) =-D__LINUX_ARM_ARCH__=6 -march=armv6k
7070
endif
71-
arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 $(call cc-option,-march=armv5te,-march=armv4t)
71+
arch-$(CONFIG_CPU_32v5) =-D__LINUX_ARM_ARCH__=5 -march=armv5te
7272
arch-$(CONFIG_CPU_32v4T) =-D__LINUX_ARM_ARCH__=4 -march=armv4t
7373
arch-$(CONFIG_CPU_32v4) =-D__LINUX_ARM_ARCH__=4 -march=armv4
7474
arch-$(CONFIG_CPU_32v3) =-D__LINUX_ARM_ARCH__=3 -march=armv3m
@@ -82,19 +82,19 @@ tune-$(CONFIG_CPU_ARM720T) =-mtune=arm7tdmi
8282
tune-$(CONFIG_CPU_ARM740T) =-mtune=arm7tdmi
8383
tune-$(CONFIG_CPU_ARM9TDMI) =-mtune=arm9tdmi
8484
tune-$(CONFIG_CPU_ARM940T) =-mtune=arm9tdmi
85-
tune-$(CONFIG_CPU_ARM946E) =$(call cc-option,-mtune=arm9e,-mtune=arm9tdmi)
85+
tune-$(CONFIG_CPU_ARM946E) =-mtune=arm9e
8686
tune-$(CONFIG_CPU_ARM920T) =-mtune=arm9tdmi
8787
tune-$(CONFIG_CPU_ARM922T) =-mtune=arm9tdmi
8888
tune-$(CONFIG_CPU_ARM925T) =-mtune=arm9tdmi
8989
tune-$(CONFIG_CPU_ARM926T) =-mtune=arm9tdmi
9090
tune-$(CONFIG_CPU_FA526) =-mtune=arm9tdmi
9191
tune-$(CONFIG_CPU_SA110) =-mtune=strongarm110
9292
tune-$(CONFIG_CPU_SA1100) =-mtune=strongarm1100
93-
tune-$(CONFIG_CPU_XSCALE) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
94-
tune-$(CONFIG_CPU_XSC3) =$(call cc-option,-mtune=xscale,-mtune=strongarm110) -Wa,-mcpu=xscale
95-
tune-$(CONFIG_CPU_FEROCEON) =$(call cc-option,-mtune=marvell-f,-mtune=xscale)
96-
tune-$(CONFIG_CPU_V6) =$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm)
97-
tune-$(CONFIG_CPU_V6K) =$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm)
93+
tune-$(CONFIG_CPU_XSCALE) =-mtune=xscale
94+
tune-$(CONFIG_CPU_XSC3) =-mtune=xscale
95+
tune-$(CONFIG_CPU_FEROCEON) =-mtune=xscale
96+
tune-$(CONFIG_CPU_V6) =-mtune=arm1136j-s
97+
tune-$(CONFIG_CPU_V6K) =-mtune=arm1136j-s
9898

9999
# Evaluate tune cc-option calls now
100100
tune-y := $(tune-y)

arch/arm/mm/mmu.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot)
390390
BUILD_BUG_ON(__fix_to_virt(__end_of_fixed_addresses) < FIXADDR_START);
391391
BUG_ON(idx >= __end_of_fixed_addresses);
392392

393-
/* we only support device mappings until pgprot_kernel has been set */
393+
/* We support only device mappings before pgprot_kernel is set. */
394394
if (WARN_ON(pgprot_val(prot) != pgprot_val(FIXMAP_PAGE_IO) &&
395-
pgprot_val(pgprot_kernel) == 0))
395+
pgprot_val(prot) && pgprot_val(pgprot_kernel) == 0))
396396
return;
397397

398398
if (pgprot_val(prot))

0 commit comments

Comments
 (0)