Deleted Added
full compact
pccardvar.h (82781) pccardvar.h (86272)
1/* $NetBSD: pcmciavar.h,v 1.12 2000/02/08 12:51:31 enami Exp $ */
1/* $NetBSD: pcmciavar.h,v 1.12 2000/02/08 12:51:31 enami Exp $ */
2/* $FreeBSD: head/sys/dev/pccard/pccardvar.h 82781 2001-09-02 06:37:41Z shiba $ */
2/* $FreeBSD: head/sys/dev/pccard/pccardvar.h 86272 2001-11-11 20:15:47Z imp $ */
3
4/*
5 * Copyright (c) 1997 Marc Horowitz. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright

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

171 char cis1_info_buf[256];
172 char *cis1_info[4];
173 /*
174 * Use int32_t for manufacturer and product so that they can
175 * hold the id value found in card CIS and special value that
176 * indicates no id was found.
177 */
178 int32_t manufacturer;
3
4/*
5 * Copyright (c) 1997 Marc Horowitz. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright

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

171 char cis1_info_buf[256];
172 char *cis1_info[4];
173 /*
174 * Use int32_t for manufacturer and product so that they can
175 * hold the id value found in card CIS and special value that
176 * indicates no id was found.
177 */
178 int32_t manufacturer;
179#define PCCARD_VENDOR_INVALID -1
179#define PCMCIA_VENDOR_INVALID -1
180 int32_t product;
180 int32_t product;
181#define PCCARD_PRODUCT_INVALID -1
181#define PCMCIA_PRODUCT_INVALID -1
182 u_int16_t error;
182 u_int16_t error;
183#define PCCARD_CIS_INVALID { NULL, NULL, NULL, NULL }
183#define PCMCIA_CIS_INVALID { NULL, NULL, NULL, NULL }
184 STAILQ_HEAD(, pccard_function) pf_head;
185};
186
187#define PCCARD_MEM_ATTR 1
188#define PCCARD_MEM_COMMON 2
189
190#define PCCARD_WIDTH_AUTO 0
191#define PCCARD_WIDTH_IO8 1

--- 167 unchanged lines hidden ---
184 STAILQ_HEAD(, pccard_function) pf_head;
185};
186
187#define PCCARD_MEM_ATTR 1
188#define PCCARD_MEM_COMMON 2
189
190#define PCCARD_WIDTH_AUTO 0
191#define PCCARD_WIDTH_IO8 1

--- 167 unchanged lines hidden ---