source: rtems/c/src/lib/libbsp/arm/gumstix/startup/bspreset.c @ 995eb4be

4.115
Last change on this file since 995eb4be was 995eb4be, checked in by Daniel Ramirez <javamonn@…>, on 11/22/13 at 01:07:59

gumstix: Move bsp_reset() to gumstix/startup/bspreset.c

  • Property mode set to 100644
File size: 414 bytes
Line 
1/*
2 *  By Yang Xi <hiyangxi@gmail.com>.
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 */
8
9#include <bsp.h>
10#include <bsp/irq-generic.h>
11#include <rtems/libcsupport.h>
12#include <rtems/libio.h>
13#include <pxa255.h>
14
15void bsp_reset( void )
16{
17#if ON_SKYEYE == 1
18  SKYEYE_MAGIC_ADDRESS = 0xff;
19#endif
20}
Note: See TracBrowser for help on using the repository browser.