ACPI: thinkpad-acpi: bump up version to 0.16
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / pcmcia / cs_types.h
blobc1d1629fcd272a038bc359f81d9fa700eb4d8524
1 /*
2 * cs_types.h
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * The initial developer of the original code is David A. Hinds
9 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
10 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
12 * (C) 1999 David A. Hinds
15 #ifndef _LINUX_CS_TYPES_H
16 #define _LINUX_CS_TYPES_H
18 #ifdef __KERNEL__
19 #include <linux/types.h>
20 #else
21 #include <sys/types.h>
22 #endif
24 #if defined(__arm__) || defined(__mips__)
25 /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
26 typedef u_int ioaddr_t;
27 #else
28 typedef u_short ioaddr_t;
29 #endif
30 typedef unsigned long kio_addr_t;
32 typedef u_short socket_t;
33 typedef u_int event_t;
34 typedef u_char cisdata_t;
35 typedef u_short page_t;
37 struct pcmcia_device;
38 typedef struct pcmcia_device *client_handle_t;
40 struct window_t;
41 typedef struct window_t *window_handle_t;
43 struct region_t;
44 typedef struct region_t *memory_handle_t;
46 #ifndef DEV_NAME_LEN
47 #define DEV_NAME_LEN 32
48 #endif
50 typedef char dev_info_t[DEV_NAME_LEN];
52 #endif /* _LINUX_CS_TYPES_H */