Bluetooth: Move scope of state_to_string
Function state_to_string will be used in other files in debug statements. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Родитель
3ed7003e72
Коммит
20d1803a70
|
@ -131,6 +131,33 @@ enum {
|
||||||
BT_CLOSED
|
BT_CLOSED
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* If unused will be removed by compiler */
|
||||||
|
static inline const char *state_to_string(int state)
|
||||||
|
{
|
||||||
|
switch (state) {
|
||||||
|
case BT_CONNECTED:
|
||||||
|
return "BT_CONNECTED";
|
||||||
|
case BT_OPEN:
|
||||||
|
return "BT_OPEN";
|
||||||
|
case BT_BOUND:
|
||||||
|
return "BT_BOUND";
|
||||||
|
case BT_LISTEN:
|
||||||
|
return "BT_LISTEN";
|
||||||
|
case BT_CONNECT:
|
||||||
|
return "BT_CONNECT";
|
||||||
|
case BT_CONNECT2:
|
||||||
|
return "BT_CONNECT2";
|
||||||
|
case BT_CONFIG:
|
||||||
|
return "BT_CONFIG";
|
||||||
|
case BT_DISCONN:
|
||||||
|
return "BT_DISCONN";
|
||||||
|
case BT_CLOSED:
|
||||||
|
return "BT_CLOSED";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "invalid state";
|
||||||
|
}
|
||||||
|
|
||||||
/* BD Address */
|
/* BD Address */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
__u8 b[6];
|
__u8 b[6];
|
||||||
|
|
|
@ -215,32 +215,6 @@ static u16 l2cap_alloc_cid(struct l2cap_conn *conn)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *state_to_string(int state)
|
|
||||||
{
|
|
||||||
switch(state) {
|
|
||||||
case BT_CONNECTED:
|
|
||||||
return "BT_CONNECTED";
|
|
||||||
case BT_OPEN:
|
|
||||||
return "BT_OPEN";
|
|
||||||
case BT_BOUND:
|
|
||||||
return "BT_BOUND";
|
|
||||||
case BT_LISTEN:
|
|
||||||
return "BT_LISTEN";
|
|
||||||
case BT_CONNECT:
|
|
||||||
return "BT_CONNECT";
|
|
||||||
case BT_CONNECT2:
|
|
||||||
return "BT_CONNECT2";
|
|
||||||
case BT_CONFIG:
|
|
||||||
return "BT_CONFIG";
|
|
||||||
case BT_DISCONN:
|
|
||||||
return "BT_DISCONN";
|
|
||||||
case BT_CLOSED:
|
|
||||||
return "BT_CLOSED";
|
|
||||||
}
|
|
||||||
|
|
||||||
return "invalid state";
|
|
||||||
}
|
|
||||||
|
|
||||||
static void l2cap_state_change(struct l2cap_chan *chan, int state)
|
static void l2cap_state_change(struct l2cap_chan *chan, int state)
|
||||||
{
|
{
|
||||||
BT_DBG("%p %s -> %s", chan, state_to_string(chan->state),
|
BT_DBG("%p %s -> %s", chan, state_to_string(chan->state),
|
||||||
|
|
Загрузка…
Ссылка в новой задаче