Clean up some more after the sys/emulation/linux removal.
[dragonfly.git] / sys / dev / netif / cs / if_cs_pccard.c
blob5b5fa609b9c4affea326c1f0ff314421baff7233
1 /*
2 * Copyright (c) 1999 M. Warner Losh <imp@village.org>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * $FreeBSD: src/sys/dev/cs/if_cs_pccard.c,v 1.1.2.1 2001/01/25 20:13:48 imp Exp $
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/kernel.h>
31 #include <sys/socket.h>
32 #include <sys/module.h>
33 #include <sys/bus.h>
35 #include <net/ethernet.h>
36 #include <net/if.h>
37 #include <net/if_arp.h>
39 #include "if_csvar.h"
40 #include <bus/pccard/pccardvar.h>
42 #include "card_if.h"
43 #include "pccarddevs.h"
45 static const struct pccard_product cs_pccard_products[] = {
46 PCMCIA_CARD(IBM, ETHERJET, 0),
47 { NULL }
49 static int
50 cs_pccard_match(device_t dev)
52 const struct pccard_product *pp;
54 if ((pp = pccard_product_lookup(dev, cs_pccard_products,
55 sizeof(cs_pccard_products[0]), NULL)) != NULL) {
56 if (pp->pp_name != NULL)
57 device_set_desc(dev, pp->pp_name);
58 return 0;
60 return EIO;
63 static int
64 cs_pccard_probe(device_t dev)
66 int error;
68 error = cs_cs89x0_probe(dev);
69 cs_release_resources(dev);
70 return (error);
73 static device_method_t cs_pccard_methods[] = {
74 /* Device interface */
75 DEVMETHOD(device_probe, pccard_compat_probe),
76 DEVMETHOD(device_attach, pccard_compat_attach),
77 DEVMETHOD(device_detach, cs_detach),
79 /* Card interface */
80 DEVMETHOD(card_compat_match, cs_pccard_match),
81 DEVMETHOD(card_compat_probe, cs_pccard_probe),
82 DEVMETHOD(card_compat_attach, cs_attach),
84 DEVMETHOD_END
87 static driver_t cs_pccard_driver = {
88 "cs",
89 cs_pccard_methods,
90 sizeof(struct cs_softc),
93 extern devclass_t cs_devclass;
95 DRIVER_MODULE(if_cs, pccard, cs_pccard_driver, cs_devclass, NULL, NULL);
96 MODULE_DEPEND(if_cs, pccard, 1, 1, 1);