linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: remove extra newline from debug output
@ 2010-09-08 13:26 Emeltchenko Andrei
  2010-09-14 13:49 ` Andrei Emeltchenko
  2010-09-15 10:29 ` Ville Tervo
  0 siblings, 2 replies; 4+ messages in thread
From: Emeltchenko Andrei @ 2010-09-08 13:26 UTC (permalink / raw)
  To: linux-bluetooth

From: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>


Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
---
 net/bluetooth/rfcomm/core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index 16b79f3..a7e4f2d 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -1698,7 +1698,7 @@ static int rfcomm_recv_frame(struct rfcomm_session *s, struct sk_buff *skb)
 		break;
 
 	default:
-		BT_ERR("Unknown packet type 0x%02x\n", type);
+		BT_ERR("Unknown packet type 0x%02x", type);
 		break;
 	}
 	kfree_skb(skb);
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Bluetooth: remove extra newline from debug output
  2010-09-08 13:26 [PATCH] Bluetooth: remove extra newline from debug output Emeltchenko Andrei
@ 2010-09-14 13:49 ` Andrei Emeltchenko
  2010-09-15 10:29 ` Ville Tervo
  1 sibling, 0 replies; 4+ messages in thread
From: Andrei Emeltchenko @ 2010-09-14 13:49 UTC (permalink / raw)
  To: linux-bluetooth

ping

On Wed, Sep 8, 2010 at 4:26 PM, Emeltchenko Andrei
<Andrei.Emeltchenko.news@gmail.com> wrote:
> From: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
>
>
> Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
> ---
>  net/bluetooth/rfcomm/core.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
> index 16b79f3..a7e4f2d 100644
> --- a/net/bluetooth/rfcomm/core.c
> +++ b/net/bluetooth/rfcomm/core.c
> @@ -1698,7 +1698,7 @@ static int rfcomm_recv_frame(struct rfcomm_session *s, struct sk_buff *skb)
>                break;
>
>        default:
> -               BT_ERR("Unknown packet type 0x%02x\n", type);
> +               BT_ERR("Unknown packet type 0x%02x", type);
>                break;
>        }
>        kfree_skb(skb);
> --
> 1.7.0.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Bluetooth: remove extra newline from debug output
  2010-09-08 13:26 [PATCH] Bluetooth: remove extra newline from debug output Emeltchenko Andrei
  2010-09-14 13:49 ` Andrei Emeltchenko
@ 2010-09-15 10:29 ` Ville Tervo
  2010-09-27 20:45   ` Gustavo F. Padovan
  1 sibling, 1 reply; 4+ messages in thread
From: Ville Tervo @ 2010-09-15 10:29 UTC (permalink / raw)
  To: ext Emeltchenko Andrei; +Cc: linux-bluetooth@vger.kernel.org

Hi Andrei,

On Wed, Sep 08, 2010 at 03:26:53PM +0200, ext Emeltchenko Andrei wrote:
> From: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
> 
> 
> Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>

Acked-by: Ville Tervo <ville.tervo@nokia.com>


> ---
>  net/bluetooth/rfcomm/core.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
> index 16b79f3..a7e4f2d 100644
> --- a/net/bluetooth/rfcomm/core.c
> +++ b/net/bluetooth/rfcomm/core.c
> @@ -1698,7 +1698,7 @@ static int rfcomm_recv_frame(struct rfcomm_session *s, struct sk_buff *skb)
>  		break;
>  
>  	default:
> -		BT_ERR("Unknown packet type 0x%02x\n", type);
> +		BT_ERR("Unknown packet type 0x%02x", type);
>  		break;
>  	}
>  	kfree_skb(skb);


-- 
Ville

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Bluetooth: remove extra newline from debug output
  2010-09-15 10:29 ` Ville Tervo
@ 2010-09-27 20:45   ` Gustavo F. Padovan
  0 siblings, 0 replies; 4+ messages in thread
From: Gustavo F. Padovan @ 2010-09-27 20:45 UTC (permalink / raw)
  To: Ville Tervo; +Cc: ext Emeltchenko Andrei, linux-bluetooth@vger.kernel.org

Hi Andrei,

* Ville Tervo <ville.tervo@nokia.com> [2010-09-15 13:29:53 +0300]:

> Hi Andrei,
> 
> On Wed, Sep 08, 2010 at 03:26:53PM +0200, ext Emeltchenko Andrei wrote:
> > From: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
> > 
> > 
> > Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@nokia.com>
> 
> Acked-by: Ville Tervo <ville.tervo@nokia.com>

Patch has been applied to my bluetooth-next-2.6 tree to later merge in
wireless-next-2.6

-- 
Gustavo F. Padovan
ProFUSION embedded systems - http://profusion.mobi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-09-27 20:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-08 13:26 [PATCH] Bluetooth: remove extra newline from debug output Emeltchenko Andrei
2010-09-14 13:49 ` Andrei Emeltchenko
2010-09-15 10:29 ` Ville Tervo
2010-09-27 20:45   ` Gustavo F. Padovan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).