-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 170454 b: refs/heads/master c: aaba2b3 h: refs/heads/master v: v3
- Loading branch information
Tilman Schmidt
authored and
David S. Miller
committed
Oct 7, 2009
1 parent
ba428f1
commit 44715f7
Showing
4 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 088ec0cc96e2befd5f3c035123f95c17bdf26e64 | ||
refs/heads/master: aaba2b3f8213e1d66e71c351fa7a2b1cbd974d3c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Dummy LL interface for the Gigaset driver | ||
* | ||
* Copyright (c) 2009 by Tilman Schmidt <tilman@imap.cc>. | ||
* | ||
* ===================================================================== | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
* published by the Free Software Foundation; either version 2 of | ||
* the License, or (at your option) any later version. | ||
* ===================================================================== | ||
*/ | ||
|
||
#include "gigaset.h" | ||
|
||
void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb) | ||
{ | ||
} | ||
EXPORT_SYMBOL_GPL(gigaset_skb_sent); | ||
|
||
void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb) | ||
{ | ||
} | ||
EXPORT_SYMBOL_GPL(gigaset_skb_rcvd); | ||
|
||
void gigaset_isdn_rcv_err(struct bc_state *bcs) | ||
{ | ||
} | ||
EXPORT_SYMBOL_GPL(gigaset_isdn_rcv_err); | ||
|
||
int gigaset_isdn_icall(struct at_state_t *at_state) | ||
{ | ||
return ICALL_IGNORE; | ||
} | ||
|
||
void gigaset_isdn_connD(struct bc_state *bcs) | ||
{ | ||
} | ||
|
||
void gigaset_isdn_hupD(struct bc_state *bcs) | ||
{ | ||
} | ||
|
||
void gigaset_isdn_connB(struct bc_state *bcs) | ||
{ | ||
} | ||
|
||
void gigaset_isdn_hupB(struct bc_state *bcs) | ||
{ | ||
} | ||
|
||
void gigaset_isdn_start(struct cardstate *cs) | ||
{ | ||
} | ||
|
||
void gigaset_isdn_stop(struct cardstate *cs) | ||
{ | ||
} | ||
|
||
int gigaset_isdn_register(struct cardstate *cs, const char *isdnid) | ||
{ | ||
pr_info("no ISDN subsystem interface\n"); | ||
return 1; | ||
} | ||
|
||
void gigaset_isdn_unregister(struct cardstate *cs) | ||
{ | ||
} |