diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2014-08-28 07:44:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-29 23:33:39 -0400 |
commit | 6fb7c3778f0fba0bad099c30e834c413c4f8bcb5 (patch) | |
tree | 7f687f4587f37b4e25e6a17c02c5de85e3c79063 | |
parent | fbd74659d4513816a6249b0db491e8d831803520 (diff) |
include/linux/phonedev.h: Remove unused header
The header file include/linux/phonedev.h does not seem to be used
anywhere. It was orphaned by 7326446c "Staging: remove telephony
drivers". Remove it.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/phonedev.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/linux/phonedev.h b/include/linux/phonedev.h deleted file mode 100644 index 4269de99e320..000000000000 --- a/include/linux/phonedev.h +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | #ifndef __LINUX_PHONEDEV_H | ||
2 | #define __LINUX_PHONEDEV_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | #ifdef __KERNEL__ | ||
7 | |||
8 | #include <linux/poll.h> | ||
9 | |||
10 | struct phone_device { | ||
11 | struct phone_device *next; | ||
12 | const struct file_operations *f_op; | ||
13 | int (*open) (struct phone_device *, struct file *); | ||
14 | int board; /* Device private index */ | ||
15 | int minor; | ||
16 | }; | ||
17 | |||
18 | extern int phonedev_init(void); | ||
19 | #define PHONE_MAJOR 100 | ||
20 | extern int phone_register_device(struct phone_device *, int unit); | ||
21 | #define PHONE_UNIT_ANY -1 | ||
22 | extern void phone_unregister_device(struct phone_device *); | ||
23 | |||
24 | #endif | ||
25 | #endif | ||