diff options
Diffstat (limited to 'drivers/isdn/gigaset/dummyll.c')
-rw-r--r-- | drivers/isdn/gigaset/dummyll.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/drivers/isdn/gigaset/dummyll.c b/drivers/isdn/gigaset/dummyll.c new file mode 100644 index 000000000000..5b27c996af6d --- /dev/null +++ b/drivers/isdn/gigaset/dummyll.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * Dummy LL interface for the Gigaset driver | ||
3 | * | ||
4 | * Copyright (c) 2009 by Tilman Schmidt <tilman@imap.cc>. | ||
5 | * | ||
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 | #include "gigaset.h" | ||
15 | |||
16 | void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb) | ||
17 | { | ||
18 | } | ||
19 | EXPORT_SYMBOL_GPL(gigaset_skb_sent); | ||
20 | |||
21 | void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb) | ||
22 | { | ||
23 | } | ||
24 | EXPORT_SYMBOL_GPL(gigaset_skb_rcvd); | ||
25 | |||
26 | void gigaset_isdn_rcv_err(struct bc_state *bcs) | ||
27 | { | ||
28 | } | ||
29 | EXPORT_SYMBOL_GPL(gigaset_isdn_rcv_err); | ||
30 | |||
31 | int gigaset_isdn_icall(struct at_state_t *at_state) | ||
32 | { | ||
33 | return ICALL_IGNORE; | ||
34 | } | ||
35 | |||
36 | void gigaset_isdn_connD(struct bc_state *bcs) | ||
37 | { | ||
38 | } | ||
39 | |||
40 | void gigaset_isdn_hupD(struct bc_state *bcs) | ||
41 | { | ||
42 | } | ||
43 | |||
44 | void gigaset_isdn_connB(struct bc_state *bcs) | ||
45 | { | ||
46 | } | ||
47 | |||
48 | void gigaset_isdn_hupB(struct bc_state *bcs) | ||
49 | { | ||
50 | } | ||
51 | |||
52 | void gigaset_isdn_start(struct cardstate *cs) | ||
53 | { | ||
54 | } | ||
55 | |||
56 | void gigaset_isdn_stop(struct cardstate *cs) | ||
57 | { | ||
58 | } | ||
59 | |||
60 | int gigaset_isdn_register(struct cardstate *cs, const char *isdnid) | ||
61 | { | ||
62 | pr_info("no ISDN subsystem interface\n"); | ||
63 | return 1; | ||
64 | } | ||
65 | |||
66 | void gigaset_isdn_unregister(struct cardstate *cs) | ||
67 | { | ||
68 | } | ||