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/net/irda/irtty-sir.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/net/irda/irtty-sir.h')
-rw-r--r-- | drivers/net/irda/irtty-sir.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/drivers/net/irda/irtty-sir.h b/drivers/net/irda/irtty-sir.h new file mode 100644 index 000000000000..b132d8f6eb13 --- /dev/null +++ b/drivers/net/irda/irtty-sir.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /********************************************************************* | ||
2 | * | ||
3 | * sir_tty.h: definitions for the irtty_sir client driver (former irtty) | ||
4 | * | ||
5 | * Copyright (c) 2002 Martin Diehl | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License as | ||
9 | * published by the Free Software Foundation; either version 2 of | ||
10 | * the License, or (at your option) any later version. | ||
11 | * | ||
12 | ********************************************************************/ | ||
13 | |||
14 | #ifndef IRTTYSIR_H | ||
15 | #define IRTTYSIR_H | ||
16 | |||
17 | #include <net/irda/irda.h> | ||
18 | #include <net/irda/irda_device.h> // chipio_t | ||
19 | |||
20 | #define IRTTY_IOC_MAGIC 'e' | ||
21 | #define IRTTY_IOCTDONGLE _IO(IRTTY_IOC_MAGIC, 1) | ||
22 | #define IRTTY_IOCGET _IOR(IRTTY_IOC_MAGIC, 2, struct irtty_info) | ||
23 | #define IRTTY_IOC_MAXNR 2 | ||
24 | |||
25 | struct sirtty_cb { | ||
26 | magic_t magic; | ||
27 | |||
28 | struct sir_dev *dev; | ||
29 | struct tty_struct *tty; | ||
30 | |||
31 | chipio_t io; /* IrDA controller information */ | ||
32 | }; | ||
33 | |||
34 | #endif | ||