xref: /dragonfly/sys/bus/isa/isa_device.h (revision 6ea3b602)
121ce0dfaSMatthew Dillon /*
221ce0dfaSMatthew Dillon  * Copyright (c) 2008 The DragonFly Project.  All rights reserved.
321ce0dfaSMatthew Dillon  *
421ce0dfaSMatthew Dillon  * This code is derived from software contributed to The DragonFly Project
521ce0dfaSMatthew Dillon  * by Matthew Dillon <dillon@backplane.com>
621ce0dfaSMatthew Dillon  *
721ce0dfaSMatthew Dillon  * Redistribution and use in source and binary forms, with or without
821ce0dfaSMatthew Dillon  * modification, are permitted provided that the following conditions
921ce0dfaSMatthew Dillon  * are met:
1021ce0dfaSMatthew Dillon  *
1121ce0dfaSMatthew Dillon  * 1. Redistributions of source code must retain the above copyright
1221ce0dfaSMatthew Dillon  *    notice, this list of conditions and the following disclaimer.
1321ce0dfaSMatthew Dillon  * 2. Redistributions in binary form must reproduce the above copyright
1421ce0dfaSMatthew Dillon  *    notice, this list of conditions and the following disclaimer in
1521ce0dfaSMatthew Dillon  *    the documentation and/or other materials provided with the
1621ce0dfaSMatthew Dillon  *    distribution.
1721ce0dfaSMatthew Dillon  * 3. Neither the name of The DragonFly Project nor the names of its
1821ce0dfaSMatthew Dillon  *    contributors may be used to endorse or promote products derived
1921ce0dfaSMatthew Dillon  *    from this software without specific, prior written permission.
2021ce0dfaSMatthew Dillon  *
2121ce0dfaSMatthew Dillon  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2221ce0dfaSMatthew Dillon  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2321ce0dfaSMatthew Dillon  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
2421ce0dfaSMatthew Dillon  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
2521ce0dfaSMatthew Dillon  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
2621ce0dfaSMatthew Dillon  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
2721ce0dfaSMatthew Dillon  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2821ce0dfaSMatthew Dillon  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
2921ce0dfaSMatthew Dillon  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3021ce0dfaSMatthew Dillon  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
3121ce0dfaSMatthew Dillon  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3221ce0dfaSMatthew Dillon  * SUCH DAMAGE.
3321ce0dfaSMatthew Dillon  */
3421ce0dfaSMatthew Dillon 
3521ce0dfaSMatthew Dillon #ifndef _BUS_ISA_ISA_DEVICE_H_
3621ce0dfaSMatthew Dillon #define _BUS_ISA_ISA_DEVICE_H_
3721ce0dfaSMatthew Dillon 
38*6ea3b602SSascha Wildner #if defined(__x86_64__)
39b2b3ffcdSSimon Schubert #include "x86_64/isa_device.h"
4021ce0dfaSMatthew Dillon #else
4121ce0dfaSMatthew Dillon #error "No isa_device.h for this architecture"
4221ce0dfaSMatthew Dillon #endif
4321ce0dfaSMatthew Dillon 
4421ce0dfaSMatthew Dillon #endif
45