From 7cd40d1f17529232f9372b8097e3dc9ba629cbfc Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 12 Nov 2014 00:30:01 +0000 Subject: [PATCH] 6809: bank names should be strings --- Kernel/cpu-6809/cpu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel/cpu-6809/cpu.h b/Kernel/cpu-6809/cpu.h index 96f2eb3b..13489f1e 100644 --- a/Kernel/cpu-6809/cpu.h +++ b/Kernel/cpu-6809/cpu.h @@ -29,11 +29,11 @@ extern size_t strlen(const char *); typedef unsigned long long time_t; #ifdef CONFIG_BANKED -#define CODE1 __attribute__((far(1))) -#define CODE2 __attribute__((far(2))) +#define CODE1 __attribute__((far("1"))) +#define CODE2 __attribute__((far("2"))) #define COMMON -#define DISCARD __attribute__((far(3))) -#define VIDEO __attribute__((far(4))) +#define DISCARD __attribute__((far("3"))) +#define VIDEO __attribute__((far("4"))) #else /* Bank attributes for 6809 in banked code mode */ #define CODE1 -- 2.34.1