11.2Sisaki/* $NetBSD: autoconf.h,v 1.2 2011/10/16 03:10:18 isaki Exp $ */ 21.1Sisaki 31.1Sisaki/* 41.1Sisaki * Copyright (c) 2008 Tetsuya Isaki. All rights reserved. 51.1Sisaki * 61.1Sisaki * Redistribution and use in source and binary forms, with or without 71.1Sisaki * modification, are permitted provided that the following conditions 81.1Sisaki * are met: 91.1Sisaki * 1. Redistributions of source code must retain the above copyright 101.1Sisaki * notice, this list of conditions and the following disclaimer. 111.1Sisaki * 2. Redistributions in binary form must reproduce the above copyright 121.1Sisaki * notice, this list of conditions and the following disclaimer in the 131.1Sisaki * documentation and/or other materials provided with the distribution. 141.1Sisaki * 151.1Sisaki * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 161.1Sisaki * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 171.1Sisaki * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 181.1Sisaki * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 191.1Sisaki * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 201.1Sisaki * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 211.1Sisaki * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 221.1Sisaki * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 231.1Sisaki * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 241.1Sisaki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 251.1Sisaki * SUCH DAMAGE. 261.1Sisaki */ 271.1Sisaki 281.1Sisaki#ifndef _X68K_AUTOCONF_H_ 291.1Sisaki#define _X68K_AUTOCONF_H_ 301.1Sisaki 311.1Sisakiextern void config_console(void); 321.1Sisakiextern void mfp_config_console(void); 331.1Sisakiextern void grf_config_console(void); 341.1Sisakiextern void ite_config_console(void); 351.1Sisaki 361.1Sisakiextern int x68k_realconfig; /* XXX should be removed ? */ 371.1Sisaki 381.1Sisakistruct grf_softc; 391.1Sisakiextern struct grf_softc congrf; /* XXX Hmm... */ 401.1Sisaki 411.1Sisaki#endif /* !_X68K_AUTOCONF_H_ */ 42