diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/pcmcia/i82092aa.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/pcmcia/i82092aa.h')
-rw-r--r-- | drivers/pcmcia/i82092aa.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/drivers/pcmcia/i82092aa.h b/drivers/pcmcia/i82092aa.h new file mode 100644 index 000000000000..b98cac7bda9f --- /dev/null +++ b/drivers/pcmcia/i82092aa.h | |||
@@ -0,0 +1,39 @@ | |||
1 | #ifndef _INCLUDE_GUARD_i82092aa_H_ | ||
2 | #define _INCLUDE_GUARD_i82092aa_H_ | ||
3 | |||
4 | #include <linux/interrupt.h> | ||
5 | |||
6 | /* $Id: i82092aa.h,v 1.1.1.1 2001/09/19 14:53:15 dwmw2 Exp $ */ | ||
7 | |||
8 | /* Debuging defines */ | ||
9 | #ifdef NOTRACE | ||
10 | #define enter(x) printk("Enter: %s, %s line %i\n",x,__FILE__,__LINE__) | ||
11 | #define leave(x) printk("Leave: %s, %s line %i\n",x,__FILE__,__LINE__) | ||
12 | #define dprintk(fmt, args...) printk(fmt , ## args) | ||
13 | #else | ||
14 | #define enter(x) do {} while (0) | ||
15 | #define leave(x) do {} while (0) | ||
16 | #define dprintk(fmt, args...) do {} while (0) | ||
17 | #endif | ||
18 | |||
19 | |||
20 | |||
21 | /* prototypes */ | ||
22 | |||
23 | static int i82092aa_pci_probe(struct pci_dev *dev, const struct pci_device_id *id); | ||
24 | static void i82092aa_pci_remove(struct pci_dev *dev); | ||
25 | static int card_present(int socketno); | ||
26 | static irqreturn_t i82092aa_interrupt(int irq, void *dev, struct pt_regs *regs); | ||
27 | |||
28 | |||
29 | |||
30 | |||
31 | static int i82092aa_get_status(struct pcmcia_socket *socket, u_int *value); | ||
32 | static int i82092aa_get_socket(struct pcmcia_socket *socket, socket_state_t *state); | ||
33 | static int i82092aa_set_socket(struct pcmcia_socket *socket, socket_state_t *state); | ||
34 | static int i82092aa_set_io_map(struct pcmcia_socket *socket, struct pccard_io_map *io); | ||
35 | static int i82092aa_set_mem_map(struct pcmcia_socket *socket, struct pccard_mem_map *mem); | ||
36 | static int i82092aa_init(struct pcmcia_socket *socket); | ||
37 | |||
38 | #endif | ||
39 | |||