Hi Gustavo, On Tue, May 29, 2012 at 01:19:26PM -0300, Gustavo Padovan wrote: > From: Gustavo Padovan <gustavo.padovan@xxxxxxxxxxxxxxx> > > A2MP doesn't use part of the L2CAP chan ops API so we just create general > empty function instead of the A2MP specific one. > > Signed-off-by: Gustavo Padovan <gustavo.padovan@xxxxxxxxxxxxxxx> > --- > include/net/bluetooth/l2cap.h | 12 ++++++++++++ > net/bluetooth/a2mp.c | 23 +++-------------------- > 2 files changed, 15 insertions(+), 20 deletions(-) > > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h > index a00b43e..b939e90 100644 > --- a/include/net/bluetooth/l2cap.h > +++ b/include/net/bluetooth/l2cap.h > @@ -740,6 +740,18 @@ static inline __u16 __next_seq(struct l2cap_chan *chan, __u16 seq) > return (seq + 1) % (chan->tx_win_max + 1); > } > > +static inline struct l2cap_chan *l2cap_chan_no_new_connection(struct l2cap_chan *chan) > +{ > + return NULL; > +} > + > +static inline void l2cap_chan_no_teardown(struct l2cap_chan *chan, int err) > +{ > +} > + > +static inline void l2cap_chan_no_ready(struct l2cap_chan *chan) > +{ > +} One note here. Shall we have debug or error message to indicate that function is not implemented? Best regards Andrei Emeltchenko -- 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