xref: /netbsd-src/sys/arch/x68k/include/autoconf.h (revision fec6c386cc3b57dab94fcc38f1d5c0ed95cb6e8e)
1*fec6c386Sisaki /* $NetBSD: autoconf.h,v 1.2 2011/10/16 03:10:18 isaki Exp $ */
2cbd07c5cSisaki 
3cbd07c5cSisaki /*
4cbd07c5cSisaki  * Copyright (c) 2008 Tetsuya Isaki. All rights reserved.
5cbd07c5cSisaki  *
6cbd07c5cSisaki  * Redistribution and use in source and binary forms, with or without
7cbd07c5cSisaki  * modification, are permitted provided that the following conditions
8cbd07c5cSisaki  * are met:
9cbd07c5cSisaki  * 1. Redistributions of source code must retain the above copyright
10cbd07c5cSisaki  *    notice, this list of conditions and the following disclaimer.
11cbd07c5cSisaki  * 2. Redistributions in binary form must reproduce the above copyright
12cbd07c5cSisaki  *    notice, this list of conditions and the following disclaimer in the
13cbd07c5cSisaki  *    documentation and/or other materials provided with the distribution.
14cbd07c5cSisaki  *
15cbd07c5cSisaki  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16cbd07c5cSisaki  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17cbd07c5cSisaki  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18cbd07c5cSisaki  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19cbd07c5cSisaki  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20cbd07c5cSisaki  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21cbd07c5cSisaki  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22cbd07c5cSisaki  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23cbd07c5cSisaki  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24cbd07c5cSisaki  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25cbd07c5cSisaki  * SUCH DAMAGE.
26cbd07c5cSisaki  */
27cbd07c5cSisaki 
28cbd07c5cSisaki #ifndef _X68K_AUTOCONF_H_
29cbd07c5cSisaki #define _X68K_AUTOCONF_H_
30cbd07c5cSisaki 
31cbd07c5cSisaki extern void config_console(void);
32cbd07c5cSisaki extern void mfp_config_console(void);
33cbd07c5cSisaki extern void grf_config_console(void);
34cbd07c5cSisaki extern void ite_config_console(void);
35cbd07c5cSisaki 
36cbd07c5cSisaki extern int  x68k_realconfig;	/* XXX should be removed ? */
37cbd07c5cSisaki 
38cbd07c5cSisaki struct grf_softc;
39cbd07c5cSisaki extern struct grf_softc congrf;	/* XXX Hmm... */
40cbd07c5cSisaki 
41cbd07c5cSisaki #endif /* !_X68K_AUTOCONF_H_ */
42