Skip to content

Commit

Permalink
Bluetooth: 6lowpan: Remove unnecessary chan_open() function
Browse files Browse the repository at this point in the history
All the chan_open() function now does is to call chan_create() so it
doesn't really add any value.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Johan Hedberg authored and Marcel Holtmann committed Oct 8, 2015
1 parent b0c09f9 commit 630ef79
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions net/bluetooth/6lowpan.c
Original file line number Diff line number Diff line change
Expand Up @@ -780,17 +780,6 @@ static struct l2cap_chan *chan_create(void)
return chan;
}

static struct l2cap_chan *chan_open(struct l2cap_chan *pchan)
{
struct l2cap_chan *chan;

chan = chan_create();
if (!chan)
return NULL;

return chan;
}

static void set_ip_addr_bits(u8 addr_type, u8 *addr)
{
if (addr_type == BDADDR_LE_PUBLIC)
Expand Down Expand Up @@ -913,7 +902,10 @@ static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
{
struct l2cap_chan *chan;

chan = chan_open(pchan);
chan = chan_create();
if (!chan)
return NULL;

chan->ops = pchan->ops;

BT_DBG("chan %p pchan %p", chan, pchan);
Expand Down

0 comments on commit 630ef79

Please sign in to comment.