diff options
author | Tilman Schmidt <tilman@imap.cc> | 2010-03-17 17:22:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-03-17 17:22:07 -0400 |
commit | 22001a13d09d82772e831dcdac0553994a4bac5d (patch) | |
tree | de2fef5da2b488016fe7907849f266b6581f04c0 /drivers | |
parent | 87faf3ccf1c939938600ab57c6c9ed5bd2e5f4cc (diff) |
gigaset: fix build failure
Update the dummy LL interface to the LL interface change
introduced by commit daab433c03c15fd642c71c94eb51bdd3f32602c8.
This fixes the build failure occurring after that commit when
enabling ISDN_DRV_GIGASET but neither ISDN_I4L nor ISDN_CAPI.
Impact: bugfix
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/isdn/gigaset/dummyll.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/drivers/isdn/gigaset/dummyll.c b/drivers/isdn/gigaset/dummyll.c index 5b27c996af6d..bd0b1eaa7572 100644 --- a/drivers/isdn/gigaset/dummyll.c +++ b/drivers/isdn/gigaset/dummyll.c | |||
@@ -57,12 +57,20 @@ void gigaset_isdn_stop(struct cardstate *cs) | |||
57 | { | 57 | { |
58 | } | 58 | } |
59 | 59 | ||
60 | int gigaset_isdn_register(struct cardstate *cs, const char *isdnid) | 60 | int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid) |
61 | { | 61 | { |
62 | pr_info("no ISDN subsystem interface\n"); | ||
63 | return 1; | 62 | return 1; |
64 | } | 63 | } |
65 | 64 | ||
66 | void gigaset_isdn_unregister(struct cardstate *cs) | 65 | void gigaset_isdn_unregdev(struct cardstate *cs) |
66 | { | ||
67 | } | ||
68 | |||
69 | void gigaset_isdn_regdrv(void) | ||
70 | { | ||
71 | pr_info("no ISDN subsystem interface\n"); | ||
72 | } | ||
73 | |||
74 | void gigaset_isdn_unregdrv(void) | ||
67 | { | 75 | { |
68 | } | 76 | } |