* include/bsp.h, lpc32xx/misc/restart.c: Renamed lpc32xx_restart() in
	bsp_restart().
This commit is contained in:
Sebastian Huber
2011-02-21 12:54:45 +00:00
parent 4be93c07ec
commit 60eac06e3d
3 changed files with 16 additions and 8 deletions

View File

@@ -1,3 +1,8 @@
2010-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* include/bsp.h, lpc32xx/misc/restart.c: Renamed lpc32xx_restart() in
bsp_restart().
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* irq/irq.c, misc/restart.c, rtc/rtc-config.c:

View File

@@ -110,7 +110,7 @@ static inline void lpc32xx_micro_seconds_delay(unsigned us)
} while (elapsed < delay);
}
void lpc32xx_restart(void *addr);
void bsp_restart(void *addr);
#define BSP_CONSOLE_UART_BASE LPC32XX_BASE_UART_5

View File

@@ -7,16 +7,19 @@
*/
/*
* Copyright (c) 2010
* embedded brains GmbH
* Obere Lagerstr. 30
* D-82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
* Copyright (c) 2010, 2011 embedded brains GmbH. All rights reserved.
*
* embedded brains GmbH
* Obere Lagerstr. 30
* 82178 Puchheim
* Germany
* <rtems@embedded-brains.de>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#include <rtems.h>
@@ -25,7 +28,7 @@
#include <bsp.h>
void lpc32xx_restart(void *addr)
void bsp_restart(void *addr)
{
ARM_SWITCH_REGISTERS;
rtems_interrupt_level level;