xref: /netbsd-src/sys/arch/evbarm/stand/board/adi_brh.c (revision 0a6cf80b255f375ccbd646eaa1a323443d2e91a6)
1*0a6cf80bSthorpej /*	$NetBSD: adi_brh.c,v 1.1 2003/03/25 23:34:26 thorpej Exp $	*/
2*0a6cf80bSthorpej 
3*0a6cf80bSthorpej /*
4*0a6cf80bSthorpej  * Copyright (c) 2002 Wasabi Systems, Inc.
5*0a6cf80bSthorpej  * All rights reserved.
6*0a6cf80bSthorpej  *
7*0a6cf80bSthorpej  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8*0a6cf80bSthorpej  *
9*0a6cf80bSthorpej  * Redistribution and use in source and binary forms, with or without
10*0a6cf80bSthorpej  * modification, are permitted provided that the following conditions
11*0a6cf80bSthorpej  * are met:
12*0a6cf80bSthorpej  * 1. Redistributions of source code must retain the above copyright
13*0a6cf80bSthorpej  *    notice, this list of conditions and the following disclaimer.
14*0a6cf80bSthorpej  * 2. Redistributions in binary form must reproduce the above copyright
15*0a6cf80bSthorpej  *    notice, this list of conditions and the following disclaimer in the
16*0a6cf80bSthorpej  *    documentation and/or other materials provided with the distribution.
17*0a6cf80bSthorpej  * 3. All advertising materials mentioning features or use of this software
18*0a6cf80bSthorpej  *    must display the following acknowledgement:
19*0a6cf80bSthorpej  *	This product includes software developed for the NetBSD Project by
20*0a6cf80bSthorpej  *	Wasabi Systems, Inc.
21*0a6cf80bSthorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22*0a6cf80bSthorpej  *    or promote products derived from this software without specific prior
23*0a6cf80bSthorpej  *    written permission.
24*0a6cf80bSthorpej  *
25*0a6cf80bSthorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26*0a6cf80bSthorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27*0a6cf80bSthorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28*0a6cf80bSthorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
29*0a6cf80bSthorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30*0a6cf80bSthorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31*0a6cf80bSthorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32*0a6cf80bSthorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33*0a6cf80bSthorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34*0a6cf80bSthorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35*0a6cf80bSthorpej  * POSSIBILITY OF SUCH DAMAGE.
36*0a6cf80bSthorpej  */
37*0a6cf80bSthorpej 
38*0a6cf80bSthorpej /*
39*0a6cf80bSthorpej  * Board initialization routines for the ADI BRH eval board.
40*0a6cf80bSthorpej  */
41*0a6cf80bSthorpej 
42*0a6cf80bSthorpej #include <sys/types.h>
43*0a6cf80bSthorpej #include <lib/libsa/stand.h>
44*0a6cf80bSthorpej 
45*0a6cf80bSthorpej #include "board.h"
46*0a6cf80bSthorpej 
47*0a6cf80bSthorpej void
board_init(void)48*0a6cf80bSthorpej board_init(void)
49*0a6cf80bSthorpej {
50*0a6cf80bSthorpej 
51*0a6cf80bSthorpej 	mem_init();
52*0a6cf80bSthorpej }
53*0a6cf80bSthorpej 
54*0a6cf80bSthorpej void
board_fini(void)55*0a6cf80bSthorpej board_fini(void)
56*0a6cf80bSthorpej {
57*0a6cf80bSthorpej 
58*0a6cf80bSthorpej 	/* Nothing to do here. */
59*0a6cf80bSthorpej }
60