source: rtems/c/src/lib/libbsp/m68k/mrm332/startup/bsppredriverhook.c @ 693b6db8

4.104.115
Last change on this file since 693b6db8 was 693b6db8, checked in by Joel Sherrill <joel.sherrill@…>, on 04/28/10 at 19:43:39

2010-04-28 Joel Sherrill <joel.sherrilL@…>

  • startup/bsppredriverhook.c: Remove warnings.
  • Property mode set to 100644
File size: 753 bytes
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
18
19extern void Spurious_Initialize(void);
20
21/*
22 *  Call Spurious_Initialize in bsp_predriver_hook because
23 *  bsp_predriver_hook is call after the _ISR_Vector_Table allocation
24 */
25void bsp_predriver_hook(void)
26{
27  Spurious_Initialize();
28}
Note: See TracBrowser for help on using the repository browser.