Blame view

kernel/linux-imx6_3.14.28/drivers/isdn/gigaset/dummyll.c 1.47 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  /*
   * 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 <linux/export.h>
  #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_regdev(struct cardstate *cs, const char *isdnid)
  {
  	return 0;
  }
  
  void gigaset_isdn_unregdev(struct cardstate *cs)
  {
  }
  
  void gigaset_isdn_regdrv(void)
  {
  	pr_info("no ISDN subsystem interface
  ");
  }
  
  void gigaset_isdn_unregdrv(void)
  {
  }