source: rtems/c/src/lib/libbsp/sparc/leon2/startup/bsppredriver.c @ 8d830fae

4.115
Last change on this file since 8d830fae was 8d830fae, checked in by Radu <radustoma@…>, on 12/02/13 at 20:07:35

leon2_doxygen_1

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