Commit 863a76e5 authored by Hannes Eder's avatar Hannes Eder Committed by David S. Miller

mISDN: fix sparse warning: symbol 'id' shadows an earlier one

Impact: rename function scope variable

Fix this warning:

  drivers/isdn/mISDN/l1oip_core.c:472:8: warning: symbol 'id' shadows an earlier one
  drivers/isdn/mISDN/l1oip_core.c:254:14: originally declared here
Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Acked-by: default avatarKarsten Keil <kkeil@suse.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bb68b1d9
...@@ -469,7 +469,7 @@ l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, ...@@ -469,7 +469,7 @@ l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase,
static void static void
l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len) l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len)
{ {
u32 id; u32 packet_id;
u8 channel; u8 channel;
u8 remotecodec; u8 remotecodec;
u16 timebase; u16 timebase;
...@@ -508,7 +508,7 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len) ...@@ -508,7 +508,7 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len)
} }
/* get id flag */ /* get id flag */
id = (*buf>>4)&1; packet_id = (*buf>>4)&1;
/* check coding */ /* check coding */
remotecodec = (*buf) & 0x0f; remotecodec = (*buf) & 0x0f;
...@@ -520,11 +520,11 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len) ...@@ -520,11 +520,11 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len)
buf++; buf++;
len--; len--;
/* check id */ /* check packet_id */
if (id) { if (packet_id) {
if (!hc->id) { if (!hc->id) {
printk(KERN_WARNING "%s: packet error - packet has id " printk(KERN_WARNING "%s: packet error - packet has id "
"0x%x, but we have not\n", __func__, id); "0x%x, but we have not\n", __func__, packet_id);
return; return;
} }
if (len < 4) { if (len < 4) {
...@@ -532,16 +532,16 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len) ...@@ -532,16 +532,16 @@ l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len)
"short for ID value\n", __func__); "short for ID value\n", __func__);
return; return;
} }
id = (*buf++) << 24; packet_id = (*buf++) << 24;
id += (*buf++) << 16; packet_id += (*buf++) << 16;
id += (*buf++) << 8; packet_id += (*buf++) << 8;
id += (*buf++); packet_id += (*buf++);
len -= 4; len -= 4;
if (id != hc->id) { if (packet_id != hc->id) {
printk(KERN_WARNING "%s: packet error - ID mismatch, " printk(KERN_WARNING "%s: packet error - ID mismatch, "
"got 0x%x, we 0x%x\n", "got 0x%x, we 0x%x\n",
__func__, id, hc->id); __func__, packet_id, hc->id);
return; return;
} }
} else { } else {
......
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