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