source: rtems/c/src/lib/libbsp/arm/beagle/misc/restart.c @ 7a66986

4.115
Last change on this file since 7a66986 was 7a66986, checked in by Claas Ziemke <ziemke@…>, on 08/22/12 at 12:39:02

Added BeagleBoard? BSP

Coding done in course of GSoC2012.

Commit edited to be brought up-to-date with mainline by
Ben Gras <beng@…>.

  • Property mode set to 100644
File size: 529 bytes
RevLine 
[7a66986]1/**
2 * @file
3 *
4 * @ingroup beagle
5 *
6 * @brief Restart implementation.
7 */
8
9/*
10 * Copyright (c) 2012 Claas Ziemke. All rights reserved.
11 *
12 *  Claas Ziemke
13 *  Kernerstrasse 11
14 *  70182 Stuttgart
15 *  Germany
16 *  <claas.ziemke@gmx.net>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <rtems.h>
24
25#include <libcpu/arm-cp15.h>
26
27#include <bsp.h>
28
29void bsp_restart(void *addr)
30{
31  BEAGLE_DO_RESTART(addr);
32}
Note: See TracBrowser for help on using the repository browser.