1139749Simp/*-
2119815Smarcel * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3119815Smarcel * All rights reserved.
4119815Smarcel *
5119815Smarcel * Redistribution and use in source and binary forms, with or without
6119815Smarcel * modification, are permitted provided that the following conditions
7119815Smarcel * are met:
8119815Smarcel * 1. Redistributions of source code must retain the above copyright
9119815Smarcel *    notice, this list of conditions and the following disclaimer.
10119815Smarcel * 2. Redistributions in binary form must reproduce the above copyright
11119815Smarcel *    notice, this list of conditions and the following disclaimer in the
12119815Smarcel *    documentation and/or other materials provided with the distribution.
13119815Smarcel *
14119815Smarcel * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15119815Smarcel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16119815Smarcel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17119815Smarcel * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18119815Smarcel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19119815Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20119815Smarcel * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21119815Smarcel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22119815Smarcel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23119815Smarcel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24119815Smarcel * SUCH DAMAGE.
25119815Smarcel *
26119815Smarcel */
27119815Smarcel
28119815Smarcel#include <sys/cdefs.h>
29119815Smarcel__FBSDID("$FreeBSD: releng/10.2/sys/dev/digi/CX.c 119418 2003-08-24 17:55:58Z obrien $");
30119815Smarcel
31119815Smarcel#include <sys/param.h>
32119815Smarcel#include <sys/conf.h>
33119815Smarcel#include <sys/kernel.h>
34119815Smarcel#include <sys/module.h>
35119815Smarcel
36119815Smarcel#include <dev/digi/CX.bios.h>
37119815Smarcel#include <dev/digi/CX.fepos.h>
38119815Smarcel#include <dev/digi/digi_mod.h>
39119815Smarcel
40119815Smarcelstruct digi_mod digi_mod_CX = {
41119815Smarcel	DIGI_MOD_VERSION,
42119815Smarcel	{ CX_bios, sizeof(CX_bios) },
43119815Smarcel	{ CX_fepos, sizeof(CX_fepos) },
44119815Smarcel	{ NULL, 0 }
45119815Smarcel};
46119815Smarcel
47119815SmarcelMODULE_VERSION(digi_CX, 1);
48119815SmarcelDEV_MODULE(digi_CX, 0, 0);
49119815Smarcel