Deleted Added
full compact
pccard_cis_quirks.c (129740) pccard_cis_quirks.c (129762)
1/* $NetBSD: pcmcia_cis_quirks.c,v 1.6 2000/04/12 21:07:55 scw Exp $ */
2
3#include <sys/cdefs.h>
1/* $NetBSD: pcmcia_cis_quirks.c,v 1.6 2000/04/12 21:07:55 scw Exp $ */
2
3#include <sys/cdefs.h>
4__FBSDID("$FreeBSD: head/sys/dev/pccard/pccard_cis_quirks.c 129740 2004-05-26 00:53:10Z imp $");
4__FBSDID("$FreeBSD: head/sys/dev/pccard/pccard_cis_quirks.c 129762 2004-05-27 01:27:04Z imp $");
5
6#define PCCARDDEBUG
7
8/*
9 * Copyright (c) 1998 Marc Horowitz. All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions

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

30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include <sys/param.h>
5
6#define PCCARDDEBUG
7
8/*
9 * Copyright (c) 1998 Marc Horowitz. All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions

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

30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include <sys/param.h>
38#include <sys/bus.h>
38#include <sys/systm.h>
39#include <sys/malloc.h>
39#include <sys/systm.h>
40#include <sys/malloc.h>
40#include <sys/module.h>
41#include <sys/kernel.h>
42#include <sys/queue.h>
43#include <sys/types.h>
44
41
45#include <sys/bus.h>
46#include <machine/bus.h>
42#include <machine/bus.h>
47#include <sys/rman.h>
48#include <machine/resource.h>
49
43
50#include "pccarddevs.h"
51#include <dev/pccard/pccardreg.h>
52#include <dev/pccard/pccardvar.h>
53#include <dev/pccard/pccard_cis.h>
44#include <dev/pccard/pccard_cis.h>
45#include <dev/pccard/pccardvar.h>
46#include "pccarddevs.h"
54
55/* There are cards out there whose CIS flat-out lies. This file
56 contains struct pccard_function chains for those devices. */
57
58/* these structures are just static templates which are then copied
59 into "live" allocated structures */
60
61struct pccard_function pccard_3cxem556_func0 = {

--- 227 unchanged lines hidden ---
47
48/* There are cards out there whose CIS flat-out lies. This file
49 contains struct pccard_function chains for those devices. */
50
51/* these structures are just static templates which are then copied
52 into "live" allocated structures */
53
54struct pccard_function pccard_3cxem556_func0 = {

--- 227 unchanged lines hidden ---