source: rtems/c/src/lib/libbsp/sparc64/shared/startup/bsppredriverhook.c @ b7d3a2ca

4.115
Last change on this file since b7d3a2ca was b7d3a2ca, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/11 at 16:45:12

2011-10-06 Gedare Bloom <giddyup44@…>

PR 1919/bsp

  • shared/startup/bsppredriverhook.c: New file.
  • Property mode set to 100644
File size: 464 bytes
RevLine 
[b7d3a2ca]1/*
2 *  This is a bsp_predriver_hook routine for sparc64
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#include <bsp/bootcard.h>
15
16extern void sparc64_install_isr_entries(void);
17
18void bsp_predriver_hook( void )
19{
20  sparc64_install_isr_entries();
21}
Note: See TracBrowser for help on using the repository browser.