Tilman Schmidt | aaba2b3 | 2009-10-06 12:19:12 +0000 | [diff] [blame] | 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 | |
Paul Gortmaker | 5d76fc2 | 2011-07-10 12:23:16 -0400 | [diff] [blame] | 14 | #include <linux/export.h> |
Tilman Schmidt | aaba2b3 | 2009-10-06 12:19:12 +0000 | [diff] [blame] | 15 | #include "gigaset.h" |
| 16 | |
| 17 | void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb) |
| 18 | { |
| 19 | } |
| 20 | EXPORT_SYMBOL_GPL(gigaset_skb_sent); |
| 21 | |
| 22 | void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb) |
| 23 | { |
| 24 | } |
| 25 | EXPORT_SYMBOL_GPL(gigaset_skb_rcvd); |
| 26 | |
| 27 | void gigaset_isdn_rcv_err(struct bc_state *bcs) |
| 28 | { |
| 29 | } |
| 30 | EXPORT_SYMBOL_GPL(gigaset_isdn_rcv_err); |
| 31 | |
| 32 | int gigaset_isdn_icall(struct at_state_t *at_state) |
| 33 | { |
| 34 | return ICALL_IGNORE; |
| 35 | } |
| 36 | |
| 37 | void gigaset_isdn_connD(struct bc_state *bcs) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | void gigaset_isdn_hupD(struct bc_state *bcs) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | void gigaset_isdn_connB(struct bc_state *bcs) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | void gigaset_isdn_hupB(struct bc_state *bcs) |
| 50 | { |
| 51 | } |
| 52 | |
| 53 | void gigaset_isdn_start(struct cardstate *cs) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | void gigaset_isdn_stop(struct cardstate *cs) |
| 58 | { |
| 59 | } |
| 60 | |
Tilman Schmidt | 22001a1 | 2010-03-17 14:22:07 -0700 | [diff] [blame] | 61 | int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid) |
Tilman Schmidt | aaba2b3 | 2009-10-06 12:19:12 +0000 | [diff] [blame] | 62 | { |
Tilman Schmidt | 81fa7b8 | 2012-04-25 13:02:20 +0000 | [diff] [blame] | 63 | return 0; |
Tilman Schmidt | aaba2b3 | 2009-10-06 12:19:12 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Tilman Schmidt | 22001a1 | 2010-03-17 14:22:07 -0700 | [diff] [blame] | 66 | void gigaset_isdn_unregdev(struct cardstate *cs) |
| 67 | { |
| 68 | } |
| 69 | |
| 70 | void gigaset_isdn_regdrv(void) |
| 71 | { |
| 72 | pr_info("no ISDN subsystem interface\n"); |
| 73 | } |
| 74 | |
| 75 | void gigaset_isdn_unregdrv(void) |
Tilman Schmidt | aaba2b3 | 2009-10-06 12:19:12 +0000 | [diff] [blame] | 76 | { |
| 77 | } |