Commit a28babc9 authored by Johan Hedberg's avatar Johan Hedberg
Browse files

Bluetooth: L2CAP: Fix coding style of bt_l2cap_chan_ops



Indenting away the function pointer name from the return type is not
consistent with the rest of the code base.

Change-Id: I8bd69ccfd201fa3c9eedb13caeff920774d1defd
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent cdb296a5
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -121,8 +121,7 @@ struct bt_l2cap_chan_ops {
	 *  @param chan The channel receiving data.
	 *  @param buf Buffer containing incoming data.
	 */
	void			(*recv)(struct bt_l2cap_chan *chan,
					struct net_buf *buf);
	void (*recv)(struct bt_l2cap_chan *chan, struct net_buf *buf);
};

#if defined(CONFIG_BLUETOOTH_L2CAP_DYNAMIC_CHANNEL)