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