Hi Mat, > AMP channels can be moved between BR/EDR and AMP controllers using a > sequence of signals. Every attempted channel move involves a series of > four signals: <snip> > { > @@ -3266,6 +3390,23 @@ static inline int l2cap_bredr_sig_cmd(struct l2cap_conn *conn, > err = l2cap_create_channel_rsp(conn, cmd, data); > break; > > + case L2CAP_MOVE_CHAN_REQ: > + err = l2cap_move_channel_req(conn, cmd, cmd_len, data); > + break; > + > + case L2CAP_MOVE_CHAN_RSP: > + err = l2cap_move_channel_rsp(conn, cmd, cmd_len, data); > + break; > + > + case L2CAP_MOVE_CHAN_CFM: > + err = l2cap_move_channel_confirm(conn, cmd, cmd_len, data); > + break; > + > + case L2CAP_MOVE_CHAN_CFM_RSP: > + err = l2cap_move_channel_confirm_rsp(conn, cmd, cmd_len, data); > + break; > + > + > default: > BT_ERR("Unknown BR/EDR signaling command 0x%2.2x", cmd->code); > err = -EINVAL; and this is the coding style damage. You sneaked in two empty lines here. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html