summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc64/shared/startup/bsppredriverhook.c
blob: fd3927ad3a0067733c1d9eb5006d8b1eee53b4ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *  This is a bsp_predriver_hook routine for sparc64
 *
 *  COPYRIGHT (c) 1989-2007.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#include <bsp/bootcard.h>

extern void sparc64_install_isr_entries(void);

void bsp_predriver_hook( void )
{
  sparc64_install_isr_entries();
}