dummyll.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. #include "gigaset.h"
  14. void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb)
  15. {
  16. }
  17. EXPORT_SYMBOL_GPL(gigaset_skb_sent);
  18. void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb)
  19. {
  20. }
  21. EXPORT_SYMBOL_GPL(gigaset_skb_rcvd);
  22. void gigaset_isdn_rcv_err(struct bc_state *bcs)
  23. {
  24. }
  25. EXPORT_SYMBOL_GPL(gigaset_isdn_rcv_err);
  26. int gigaset_isdn_icall(struct at_state_t *at_state)
  27. {
  28. return ICALL_IGNORE;
  29. }
  30. void gigaset_isdn_connD(struct bc_state *bcs)
  31. {
  32. }
  33. void gigaset_isdn_hupD(struct bc_state *bcs)
  34. {
  35. }
  36. void gigaset_isdn_connB(struct bc_state *bcs)
  37. {
  38. }
  39. void gigaset_isdn_hupB(struct bc_state *bcs)
  40. {
  41. }
  42. void gigaset_isdn_start(struct cardstate *cs)
  43. {
  44. }
  45. void gigaset_isdn_stop(struct cardstate *cs)
  46. {
  47. }
  48. int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid)
  49. {
  50. return 1;
  51. }
  52. void gigaset_isdn_unregdev(struct cardstate *cs)
  53. {
  54. }
  55. void gigaset_isdn_regdrv(void)
  56. {
  57. pr_info("no ISDN subsystem interface\n");
  58. }
  59. void gigaset_isdn_unregdrv(void)
  60. {
  61. }