Commit fc5fef61 authored by Gustavo Padovan's avatar Gustavo Padovan Committed by Johan Hedberg

Bluetooth: Remove 'register' usage from the subsystem

Let the compiler chooses what is best.
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 6039aa73
...@@ -231,12 +231,12 @@ static void bluecard_write_wakeup(bluecard_info_t *info) ...@@ -231,12 +231,12 @@ static void bluecard_write_wakeup(bluecard_info_t *info)
} }
do { do {
register unsigned int iobase = info->p_dev->resource[0]->start; unsigned int iobase = info->p_dev->resource[0]->start;
register unsigned int offset; unsigned int offset;
register unsigned char command; unsigned char command;
register unsigned long ready_bit; unsigned long ready_bit;
register struct sk_buff *skb; register struct sk_buff *skb;
register int len; int len;
clear_bit(XMIT_WAKEUP, &(info->tx_state)); clear_bit(XMIT_WAKEUP, &(info->tx_state));
......
...@@ -186,9 +186,9 @@ static void bt3c_write_wakeup(bt3c_info_t *info) ...@@ -186,9 +186,9 @@ static void bt3c_write_wakeup(bt3c_info_t *info)
return; return;
do { do {
register unsigned int iobase = info->p_dev->resource[0]->start; unsigned int iobase = info->p_dev->resource[0]->start;
register struct sk_buff *skb; register struct sk_buff *skb;
register int len; int len;
if (!pcmcia_dev_present(info->p_dev)) if (!pcmcia_dev_present(info->p_dev))
break; break;
......
...@@ -140,9 +140,9 @@ static void btuart_write_wakeup(btuart_info_t *info) ...@@ -140,9 +140,9 @@ static void btuart_write_wakeup(btuart_info_t *info)
} }
do { do {
register unsigned int iobase = info->p_dev->resource[0]->start; unsigned int iobase = info->p_dev->resource[0]->start;
register struct sk_buff *skb; register struct sk_buff *skb;
register int len; int len;
clear_bit(XMIT_WAKEUP, &(info->tx_state)); clear_bit(XMIT_WAKEUP, &(info->tx_state));
......
...@@ -144,9 +144,9 @@ static void dtl1_write_wakeup(dtl1_info_t *info) ...@@ -144,9 +144,9 @@ static void dtl1_write_wakeup(dtl1_info_t *info)
} }
do { do {
register unsigned int iobase = info->p_dev->resource[0]->start; unsigned int iobase = info->p_dev->resource[0]->start;
register struct sk_buff *skb; register struct sk_buff *skb;
register int len; int len;
clear_bit(XMIT_WAKEUP, &(info->tx_state)); clear_bit(XMIT_WAKEUP, &(info->tx_state));
......
...@@ -552,7 +552,7 @@ static u16 bscp_get_crc(struct bcsp_struct *bcsp) ...@@ -552,7 +552,7 @@ static u16 bscp_get_crc(struct bcsp_struct *bcsp)
static int bcsp_recv(struct hci_uart *hu, void *data, int count) static int bcsp_recv(struct hci_uart *hu, void *data, int count)
{ {
struct bcsp_struct *bcsp = hu->priv; struct bcsp_struct *bcsp = hu->priv;
register unsigned char *ptr; unsigned char *ptr;
BT_DBG("hu %p count %d rx_state %d rx_count %ld", BT_DBG("hu %p count %d rx_state %d rx_count %ld",
hu, count, bcsp->rx_state, bcsp->rx_count); hu, count, bcsp->rx_state, bcsp->rx_count);
......
...@@ -126,7 +126,7 @@ static int h4_enqueue(struct hci_uart *hu, struct sk_buff *skb) ...@@ -126,7 +126,7 @@ static int h4_enqueue(struct hci_uart *hu, struct sk_buff *skb)
static inline int h4_check_data_len(struct h4_struct *h4, int len) static inline int h4_check_data_len(struct h4_struct *h4, int len)
{ {
register int room = skb_tailroom(h4->rx_skb); int room = skb_tailroom(h4->rx_skb);
BT_DBG("len %d room %d", len, room); BT_DBG("len %d room %d", len, room);
......
...@@ -348,7 +348,7 @@ static int ll_enqueue(struct hci_uart *hu, struct sk_buff *skb) ...@@ -348,7 +348,7 @@ static int ll_enqueue(struct hci_uart *hu, struct sk_buff *skb)
static inline int ll_check_data_len(struct ll_struct *ll, int len) static inline int ll_check_data_len(struct ll_struct *ll, int len)
{ {
register int room = skb_tailroom(ll->rx_skb); int room = skb_tailroom(ll->rx_skb);
BT_DBG("len %d room %d", len, room); BT_DBG("len %d room %d", len, room);
...@@ -374,11 +374,11 @@ static inline int ll_check_data_len(struct ll_struct *ll, int len) ...@@ -374,11 +374,11 @@ static inline int ll_check_data_len(struct ll_struct *ll, int len)
static int ll_recv(struct hci_uart *hu, void *data, int count) static int ll_recv(struct hci_uart *hu, void *data, int count)
{ {
struct ll_struct *ll = hu->priv; struct ll_struct *ll = hu->priv;
register char *ptr; char *ptr;
struct hci_event_hdr *eh; struct hci_event_hdr *eh;
struct hci_acl_hdr *ah; struct hci_acl_hdr *ah;
struct hci_sco_hdr *sh; struct hci_sco_hdr *sh;
register int len, type, dlen; int len, type, dlen;
BT_DBG("hu %p count %d rx_state %ld rx_count %ld", hu, count, ll->rx_state, ll->rx_count); BT_DBG("hu %p count %d rx_state %ld rx_count %ld", hu, count, ll->rx_state, ll->rx_count);
......
...@@ -799,7 +799,7 @@ EXPORT_SYMBOL(hci_conn_put_device); ...@@ -799,7 +799,7 @@ EXPORT_SYMBOL(hci_conn_put_device);
int hci_get_conn_list(void __user *arg) int hci_get_conn_list(void __user *arg)
{ {
register struct hci_conn *c; struct hci_conn *c;
struct hci_conn_list_req req, *cl; struct hci_conn_list_req req, *cl;
struct hci_conn_info *ci; struct hci_conn_info *ci;
struct hci_dev *hdev; struct hci_dev *hdev;
......
...@@ -118,7 +118,7 @@ void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb) ...@@ -118,7 +118,7 @@ void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb)
continue; continue;
if (bt_cb(skb)->pkt_type == HCI_EVENT_PKT) { if (bt_cb(skb)->pkt_type == HCI_EVENT_PKT) {
register int evt = (*(__u8 *)skb->data & HCI_FLT_EVENT_BITS); int evt = (*(__u8 *)skb->data & HCI_FLT_EVENT_BITS);
if (!hci_test_bit(evt, &flt->event_mask)) if (!hci_test_bit(evt, &flt->event_mask))
continue; continue;
......
...@@ -908,7 +908,7 @@ static void sco_conn_ready(struct sco_conn *conn) ...@@ -908,7 +908,7 @@ static void sco_conn_ready(struct sco_conn *conn)
/* ----- SCO interface with lower layer (HCI) ----- */ /* ----- SCO interface with lower layer (HCI) ----- */
int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr) int sco_connect_ind(struct hci_dev *hdev, bdaddr_t *bdaddr)
{ {
register struct sock *sk; struct sock *sk;
struct hlist_node *node; struct hlist_node *node;
int lm = 0; int lm = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment