Deleted Added
full compact
ahc_eisa.c (102687) ahc_eisa.c (103811)
1/*
2 * FreeBSD, EISA product support functions
3 *
4 *
5 * Copyright (c) 1994-1998, 2000, 2001 Justin T. Gibbs.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/ahc_eisa.c#8 $
30 *
1/*
2 * FreeBSD, EISA product support functions
3 *
4 *
5 * Copyright (c) 1994-1998, 2000, 2001 Justin T. Gibbs.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/ahc_eisa.c#8 $
30 *
31 * $FreeBSD: head/sys/dev/aic7xxx/ahc_eisa.c 102687 2002-08-31 06:53:06Z gibbs $
31 * $FreeBSD: head/sys/dev/aic7xxx/ahc_eisa.c 103811 2002-09-22 23:03:31Z scottl $
32 */
33
34#include <dev/aic7xxx/aic7xxx_osm.h>
35
36#include <dev/eisa/eisaconf.h>
37
38static int
39aic7770_probe(device_t dev)

--- 158 unchanged lines hidden (view full) ---

198 /* Device interface */
199 DEVMETHOD(device_probe, aic7770_probe),
200 DEVMETHOD(device_attach, aic7770_attach),
201 DEVMETHOD(device_detach, ahc_detach),
202 { 0, 0 }
203};
204
205static driver_t ahc_eisa_driver = {
32 */
33
34#include <dev/aic7xxx/aic7xxx_osm.h>
35
36#include <dev/eisa/eisaconf.h>
37
38static int
39aic7770_probe(device_t dev)

--- 158 unchanged lines hidden (view full) ---

198 /* Device interface */
199 DEVMETHOD(device_probe, aic7770_probe),
200 DEVMETHOD(device_attach, aic7770_attach),
201 DEVMETHOD(device_detach, ahc_detach),
202 { 0, 0 }
203};
204
205static driver_t ahc_eisa_driver = {
206 "ahc_eisa",
206 "ahc",
207 ahc_eisa_device_methods,
208 sizeof(struct ahc_softc)
209};
210
207 ahc_eisa_device_methods,
208 sizeof(struct ahc_softc)
209};
210
211static devclass_t ahc_eisa_devclass;
212
213DRIVER_MODULE(ahc_eisa, eisa, ahc_eisa_driver, ahc_eisa_devclass, 0, 0);
211DRIVER_MODULE(ahc_eisa, eisa, ahc_eisa_driver, ahc_devclass, 0, 0);
214MODULE_DEPEND(ahc_eisa, ahc, 1, 1, 1);
215MODULE_VERSION(ahc_eisa, 1);
212MODULE_DEPEND(ahc_eisa, ahc, 1, 1, 1);
213MODULE_VERSION(ahc_eisa, 1);