diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-07-08 10:20:04 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-07-29 09:11:39 +0200 |
commit | 22362a0e23182d230527a5add690b4027860d7d3 (patch) | |
tree | fbdd8176032b6351e78d0a02525459a9e9ec4f34 /arch/s390/Makefile | |
parent | 1d2334cb7da37e4b0005ca1d194d4e10ca7119f4 (diff) | |
download | op-kernel-dev-22362a0e23182d230527a5add690b4027860d7d3.zip op-kernel-dev-22362a0e23182d230527a5add690b4027860d7d3.tar.gz |
s390/sclp: convert early sclp console code to C
The 31-bit assembler code for the early sclp console is error
prone as git commit fde24b54d976cc123506695c17db01438a11b673
"s390/sclp: clear upper register halves in _sclp_print_early"
has shown.
Convert the assembler code to C.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/Makefile')
-rw-r--r-- | arch/s390/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index 667b1bc..e8d4423 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile @@ -33,6 +33,8 @@ mflags-$(CONFIG_MARCH_Z196) := -march=z196 mflags-$(CONFIG_MARCH_ZEC12) := -march=zEC12 mflags-$(CONFIG_MARCH_Z13) := -march=z13 +export CC_FLAGS_MARCH := $(mflags-y) + aflags-y += $(mflags-y) cflags-y += $(mflags-y) |