summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
Diffstat (limited to 'cpu')
-rw-r--r--cpu/arm_cortexa9/db8500/Makefile8
-rwxr-xr-xcpu/arm_cortexa9/db8500/clock.c2
-rw-r--r--cpu/arm_cortexa9/db8500/timer.c1
3 files changed, 9 insertions, 2 deletions
diff --git a/cpu/arm_cortexa9/db8500/Makefile b/cpu/arm_cortexa9/db8500/Makefile
index 180da3026..39034bb18 100644
--- a/cpu/arm_cortexa9/db8500/Makefile
+++ b/cpu/arm_cortexa9/db8500/Makefile
@@ -25,9 +25,15 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(SOC).a
-COBJS = timer.o interrupts.o
+# We want warnings free code.
+# Some generic include files have inline functions with unused parameters.
+CFLAGS += -Wall -Wextra -Werror -Wno-unused-parameter
+
+# Please keep one file per line and in alphabetical order
COBJS += clock.o
+COBJS += interrupts.o
COBJS += prcmu.o
+COBJS += timer.o
SRCS := $(START:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
diff --git a/cpu/arm_cortexa9/db8500/clock.c b/cpu/arm_cortexa9/db8500/clock.c
index 41f1bb254..9e3b87394 100755
--- a/cpu/arm_cortexa9/db8500/clock.c
+++ b/cpu/arm_cortexa9/db8500/clock.c
@@ -37,7 +37,7 @@ static unsigned int clkrst_base[] = {
U8500_CLKRST1_BASE,
U8500_CLKRST2_BASE,
U8500_CLKRST3_BASE,
- NULL,
+ 0,
U8500_CLKRST5_BASE,
U8500_CLKRST6_BASE,
U8500_CLKRST7_BASE, /* ED only */
diff --git a/cpu/arm_cortexa9/db8500/timer.c b/cpu/arm_cortexa9/db8500/timer.c
index bc27755b1..42d70c73e 100644
--- a/cpu/arm_cortexa9/db8500/timer.c
+++ b/cpu/arm_cortexa9/db8500/timer.c
@@ -22,6 +22,7 @@
#include <common.h>
#include <asm/io.h>
+#include <asm/arch/common.h>
#include <asm/arch/hardware.h>
#include <boottime.h>