Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / drivers / tty / ipwireless / main.h
blobf2cbb116bccb51d2c3c548cf5053b782fb84f9de
1 /*
2 * IPWireless 3G PCMCIA Network Driver
4 * Original code
5 * by Stephen Blackheath <stephen@blacksapphire.com>,
6 * Ben Martel <benm@symmetric.co.nz>
8 * Copyrighted as follows:
9 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
11 * Various driver changes and rewrites, port to new kernels
12 * Copyright (C) 2006-2007 Jiri Kosina
14 * Misc code cleanups and updates
15 * Copyright (C) 2007 David Sterba
18 #ifndef _IPWIRELESS_CS_H_
19 #define _IPWIRELESS_CS_H_
21 #include <linux/sched.h>
22 #include <linux/types.h>
24 #include <pcmcia/cistpl.h>
25 #include <pcmcia/ds.h>
27 #include "hardware.h"
29 #define IPWIRELESS_PCCARD_NAME "ipwireless"
30 #define IPWIRELESS_PCMCIA_VERSION "1.1"
31 #define IPWIRELESS_PCMCIA_AUTHOR \
32 "Stephen Blackheath, Ben Martel, Jiri Kosina and David Sterba"
34 #define IPWIRELESS_TX_QUEUE_SIZE 262144
35 #define IPWIRELESS_RX_QUEUE_SIZE 262144
37 #define IPWIRELESS_STATE_DEBUG
39 struct ipw_hardware;
40 struct ipw_network;
41 struct ipw_tty;
43 struct ipw_dev {
44 struct pcmcia_device *link;
45 int is_v2_card;
47 void __iomem *attr_memory;
49 void __iomem *common_memory;
51 /* Reference to attribute memory, containing CIS data */
52 void *attribute_memory;
54 /* Hardware context */
55 struct ipw_hardware *hardware;
56 /* Network layer context */
57 struct ipw_network *network;
58 /* TTY device context */
59 struct ipw_tty *tty;
60 struct work_struct work_reboot;
63 /* Module parametres */
64 extern int ipwireless_debug;
65 extern int ipwireless_loopback;
66 extern int ipwireless_out_queue;
68 #endif