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