source: rtems/c/src/lib/libbsp/sparc/leon3/startup/bsppredriver.c @ 38905d70

4.115
Last change on this file since 38905d70 was 38905d70, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/13 at 13:28:48

leon3/bsppredriver.c: Add include file to warning

  • Property mode set to 100644
File size: 636 bytes
Line 
1/*  Installs the BSP pre-driver hook
2 *
3 *  COPYRIGHT (c) 2011
4 *  Aeroflex Gaisler
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 */
10
11#include <bsp.h>
12#include <bsp/bootcard.h>
13
14/*
15 *  bsp_predriver_hook
16 *
17 *  BSP predriver hook. Called just before drivers are initialized.
18 *  Is used to initialize shared interrupt handling.
19 */
20void bsp_predriver_hook( void )
21{
22  /* Initialize shared interrupt handling, must be done after IRQ
23   * controller has been found and initialized.
24   */
25  BSP_shared_interrupt_init();
26}
Note: See TracBrowser for help on using the repository browser.