diff options
author | Alan Cox <alan@linux.intel.com> | 2012-10-25 04:30:52 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-10-26 03:46:41 -0400 |
commit | 0f15b1511ad2e82a6b422d275c369e92242854e6 (patch) | |
tree | d84ed6e2be25194a3cb0d79ec2c7c583078f6cc0 /drivers | |
parent | 6a328d8c6f03501657ad580f6f98bf9a42583ff7 (diff) | |
download | linux-3.10-0f15b1511ad2e82a6b422d275c369e92242854e6.tar.gz linux-3.10-0f15b1511ad2e82a6b422d275c369e92242854e6.tar.bz2 linux-3.10-0f15b1511ad2e82a6b422d275c369e92242854e6.zip |
isdn: remove dead code
multi is assigned to 0 and then acts as a constant. Remove the dead
code.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/isdn/mISDN/l1oip_core.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/isdn/mISDN/l1oip_core.c b/drivers/isdn/mISDN/l1oip_core.c index db50f788855..f8e405c383a 100644 --- a/drivers/isdn/mISDN/l1oip_core.c +++ b/drivers/isdn/mISDN/l1oip_core.c @@ -277,7 +277,6 @@ l1oip_socket_send(struct l1oip *hc, u8 localcodec, u8 channel, u32 chanmask, u16 timebase, u8 *buf, int len) { u8 *p; - int multi = 0; u8 frame[len + 32]; struct socket *socket = NULL; @@ -317,9 +316,7 @@ l1oip_socket_send(struct l1oip *hc, u8 localcodec, u8 channel, u32 chanmask, *p++ = hc->id >> 8; *p++ = hc->id; } - *p++ = (multi == 1) ? 0x80 : 0x00 + channel; /* m-flag, channel */ - if (multi == 1) - *p++ = len; /* length */ + *p++ = 0x00 + channel; /* m-flag, channel */ *p++ = timebase >> 8; /* time base */ *p++ = timebase; |