• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/gigaset/

Lines Matching defs:bcs

319 	struct bc_state		*bcs;
357 * - bcs: pointer to the B Channel control structure
362 struct bc_state *bcs;
386 struct bc_state *bcs;
460 struct bc_state *bcs; /* Array of struct bc_state */
609 int (*init_bchannel)(struct bc_state *bcs);
613 int (*close_bchannel)(struct bc_state *bcs);
615 int (*initbcshw)(struct bc_state *bcs);
617 int (*freebcshw)(struct bc_state *bcs);
619 void (*reinitbcshw)(struct bc_state *bcs);
633 int (*send_skb)(struct bc_state *bcs, struct sk_buff *skb);
656 int gigaset_m10x_send_skb(struct bc_state *bcs, struct sk_buff *skb);
668 int gigaset_isoc_send_skb(struct bc_state *bcs, struct sk_buff *skb);
677 struct bc_state *bcs);
681 int gigaset_isoc_buildframe(struct bc_state *bcs, unsigned char *in, int len);
696 void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb);
704 void gigaset_i4l_channel_cmd(struct bc_state *bcs, int cmd);
707 static inline void gigaset_isdn_rcv_err(struct bc_state *bcs)
713 response.driver = bcs->cs->myid;
715 response.arg = bcs->channel;
717 bcs->cs->iif.statcallb(&response);
743 void gigaset_bcs_reinit(struct bc_state *bcs);
744 void gigaset_at_init(struct at_state_t *at_state, struct bc_state *bcs,
746 int gigaset_get_channel(struct bc_state *bcs);
747 void gigaset_free_channel(struct bc_state *bcs);
789 void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb);
814 static inline void gigaset_bchannel_down(struct bc_state *bcs)
816 gigaset_add_event(bcs->cs, &bcs->at_state, EV_BC_CLOSED, NULL, 0, NULL);
819 gigaset_schedule_event(bcs->cs);
824 static inline void gigaset_bchannel_up(struct bc_state *bcs)
826 gigaset_add_event(bcs->cs, &bcs->at_state, EV_BC_OPEN, NULL, 0, NULL);
829 gigaset_schedule_event(bcs->cs);
840 struct bc_state *bcs)
842 cs->iif.rcvcallb_skb(cs->myid, bcs->channel, skb);
843 bcs->trans_down++;
851 struct bc_state *bcs)
856 if (bcs->ignore)
857 --bcs->ignore;
859 ++bcs->corrupted;
860 gigaset_isdn_rcv_err(bcs);