Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205947
b: refs/heads/master
c: bb8f3c0
h: refs/heads/master
i:
  205945: efcad6e
  205943: 40ad6a9
v: v3
  • Loading branch information
Pavan Savoy authored and Greg Kroah-Hartman committed Jul 22, 2010
1 parent 481df9f commit e82a214
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 36b5aee46b5e4788758409829926c631de0a64a3
refs/heads/master: bb8f3c061f2e7282730059ae524ff19d47d70b17
23 changes: 15 additions & 8 deletions trunk/drivers/staging/ti-st/bt_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,31 +80,33 @@ static inline void hci_st_tx_complete(struct hci_st *hst, int pkt_type)
* status.hci_st_open() function will wait for signal from this
* API when st_register() function returns ST_PENDING.
*/
static void hci_st_registration_completion_cb(char data)
static void hci_st_registration_completion_cb(void *priv_data, char data)
{
struct hci_st *lhst = (struct hci_st *)priv_data;
BTDRV_API_START();

/* hci_st_open() function needs value of 'data' to know
* the registration status(success/fail),So have a back
* up of it.
*/
hst->streg_cbdata = data;
lhst->streg_cbdata = data;

/* Got a feedback from ST for BT driver registration
* request.Wackup hci_st_open() function to continue
* it's open operation.
*/
complete(&hst->wait_for_btdrv_reg_completion);
complete(&lhst->wait_for_btdrv_reg_completion);

BTDRV_API_EXIT(0);
}

/* Called by Shared Transport layer when receive data is
* available */
static long hci_st_receive(struct sk_buff *skb)
static long hci_st_receive(void *priv_data, struct sk_buff *skb)
{
int err;
int len;
struct hci_st *lhst = (struct hci_st *)priv_data;

BTDRV_API_START();

Expand All @@ -116,21 +118,21 @@ static long hci_st_receive(struct sk_buff *skb)
BTDRV_API_EXIT(-EFAULT);
return -EFAULT;
}
if (!hst) {
if (!lhst) {
kfree_skb(skb);
BT_DRV_ERR("Invalid hci_st memory,freeing SKB");
BTDRV_API_EXIT(-EFAULT);
return -EFAULT;
}
if (!test_bit(BT_DRV_RUNNING, &hst->flags)) {
if (!test_bit(BT_DRV_RUNNING, &lhst->flags)) {
kfree_skb(skb);
BT_DRV_ERR("Device is not running,freeing SKB");
BTDRV_API_EXIT(-EINVAL);
return -EINVAL;
}

len = skb->len;
skb->dev = (struct net_device *)hst->hdev;
skb->dev = (struct net_device *)lhst->hdev;

/* Forward skb to HCI CORE layer */
err = hci_recv_frame(skb);
Expand All @@ -141,7 +143,7 @@ static long hci_st_receive(struct sk_buff *skb)
BTDRV_API_EXIT(err);
return err;
}
hst->hdev->stat.byte_rx += len;
lhst->hdev->stat.byte_rx += len;

BTDRV_API_EXIT(0);
return 0;
Expand Down Expand Up @@ -189,6 +191,11 @@ static int hci_st_open(struct hci_dev *hdev)
* make it as NULL */
hci_st_proto.write = NULL;

/* send in the hst to be received at registration complete callback
* and during st's receive
*/
hci_st_proto.priv_data = hst;

/* Register with ST layer */
err = st_register(&hci_st_proto);
if (err == -EINPROGRESS) {
Expand Down
8 changes: 6 additions & 2 deletions trunk/drivers/staging/ti-st/st.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,17 @@ enum proto_type {
* download is in progress.
* @write: pointer to function in ST provided to protocol drivers from ST,
* to be made use when protocol drivers have data to send to TTY.
* @priv_data: privdate data holder for the protocol drivers, sent
* from the protocol drivers during registration, and sent back on
* reg_complete_cb and recv.
*/
struct st_proto_s {
enum proto_type type;
long (*recv) (struct sk_buff *);
long (*recv) (void *, struct sk_buff *);
unsigned char (*match_packet) (const unsigned char *data);
void (*reg_complete_cb) (char data);
void (*reg_complete_cb) (void *, char data);
long (*write) (struct sk_buff *skb);
void *priv_data;
};

extern long st_register(struct st_proto_s *);
Expand Down
8 changes: 6 additions & 2 deletions trunk/drivers/staging/ti-st/st_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ void st_send_frame(enum proto_type protoid, struct st_data_s *st_gdata)
* protocol stack driver
*/
if (likely(st_gdata->list[protoid]->recv != NULL)) {
if (unlikely(st_gdata->list[protoid]->recv(st_gdata->rx_skb)
if (unlikely
(st_gdata->list[protoid]->recv
(st_gdata->list[protoid]->priv_data, st_gdata->rx_skb)
!= 0)) {
pr_err(" proto stack %d's ->recv failed", protoid);
kfree_skb(st_gdata->rx_skb);
Expand All @@ -144,7 +146,8 @@ void st_reg_complete(struct st_data_s *st_gdata, char err)
for (i = 0; i < ST_MAX; i++) {
if (likely(st_gdata != NULL && st_gdata->list[i] != NULL &&
st_gdata->list[i]->reg_complete_cb != NULL))
st_gdata->list[i]->reg_complete_cb(err);
st_gdata->list[i]->reg_complete_cb
(st_gdata->list[i]->priv_data, err);
}
}

Expand Down Expand Up @@ -878,6 +881,7 @@ static void st_tty_close(struct tty_struct *tty)
pr_err("%d not un-registered", i);
st_gdata->list[i] = NULL;
}
st_gdata->protos_registered = 0;
spin_unlock_irqrestore(&st_gdata->lock, flags);
/*
* signal to UIM via KIM that -
Expand Down

0 comments on commit e82a214

Please sign in to comment.