diff options
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm926ejs/mx23/Makefile (renamed from cpu/arm926ejs/stmp378x/Makefile) | 0 | ||||
-rw-r--r-- | cpu/arm926ejs/mx23/config.mk (renamed from cpu/arm926ejs/stmp378x/config.mk) | 0 | ||||
-rw-r--r-- | cpu/arm926ejs/mx23/reset.S (renamed from cpu/arm926ejs/stmp378x/reset.S) | 4 | ||||
-rw-r--r-- | cpu/arm926ejs/mx23/spi.c (renamed from cpu/arm926ejs/stmp378x/spi.c) | 4 | ||||
-rw-r--r-- | cpu/arm926ejs/mx23/timer.c (renamed from cpu/arm926ejs/stmp378x/timer.c) | 6 |
5 files changed, 8 insertions, 6 deletions
diff --git a/cpu/arm926ejs/stmp378x/Makefile b/cpu/arm926ejs/mx23/Makefile index 3b23886..3b23886 100644 --- a/cpu/arm926ejs/stmp378x/Makefile +++ b/cpu/arm926ejs/mx23/Makefile diff --git a/cpu/arm926ejs/stmp378x/config.mk b/cpu/arm926ejs/mx23/config.mk index b524ad1..b524ad1 100644 --- a/cpu/arm926ejs/stmp378x/config.mk +++ b/cpu/arm926ejs/mx23/config.mk diff --git a/cpu/arm926ejs/stmp378x/reset.S b/cpu/arm926ejs/mx23/reset.S index a64103b..a53ca57 100644 --- a/cpu/arm926ejs/stmp378x/reset.S +++ b/cpu/arm926ejs/mx23/reset.S @@ -1,5 +1,7 @@ /* - * Processor reset for Freescale STMP378x SoC. + * Processor reset for Freescale MX23 SoC. + * + * (C) Copyright 2009-2010 Freescale Semiconductor, Inc. * * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> * diff --git a/cpu/arm926ejs/stmp378x/spi.c b/cpu/arm926ejs/mx23/spi.c index fed0b97..b785918 100644 --- a/cpu/arm926ejs/stmp378x/spi.c +++ b/cpu/arm926ejs/mx23/spi.c @@ -1,9 +1,9 @@ /* * Copyright (C) 2008 Embedded Alley Solutions Inc. * - * (C) Copyright 2009 Freescale Semiconductor, Inc. + * (C) Copyright 2009-2010 Freescale Semiconductor, Inc. * - * Freescale STMP378x SSP/SPI driver + * Freescale MX23 SSP/SPI driver * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cpu/arm926ejs/stmp378x/timer.c b/cpu/arm926ejs/mx23/timer.c index 40e7e32..2edfa98 100644 --- a/cpu/arm926ejs/stmp378x/timer.c +++ b/cpu/arm926ejs/mx23/timer.c @@ -16,7 +16,7 @@ * (C) Copyright 2004 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com> * - * (C) Copyright 2009 Freescale Semiconductor, Inc. + * (C) Copyright 2009-2010 Freescale Semiconductor, Inc. * * See file CREDITS for list of people who contributed to this * project. @@ -38,7 +38,7 @@ */ #include <common.h> -#include <asm/arch/stmp378x.h> +#include <asm/arch/mx23.h> #include <asm/arch/timrot.h> #define CONFIG_USE_TIMER0 @@ -56,7 +56,7 @@ #define TIMCTRL TIMCTRL3 #define TIMCOUNT TIMCOUNT3 #else -#error "Define which STMP378x timer to use" +#error "Define which MX23 timer to use" #endif #define TIMER_LOAD_VAL 0x0000ffff |