All of lore.kernel.org
 help / color / mirror / Atom feed
* drivers/isdn: beautify code, delete 'break' after 'return'
@ 2013-02-27  9:13 Chen Gang
  2013-02-27  9:14 ` Chen Gang
  2013-02-27  9:16 ` [PATCH] " Chen Gang
  0 siblings, 2 replies; 6+ messages in thread
From: Chen Gang @ 2013-02-27  9:13 UTC (permalink / raw)
  To: Jiri Kosina, isdn, Jiri Slaby; +Cc: Greg KH, alan, netdev


  delete 'break' statement after 'return' statement

Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
 drivers/isdn/i4l/isdn_tty.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c
index d8a7d83..925a7ed 100644
--- a/drivers/isdn/i4l/isdn_tty.c
+++ b/drivers/isdn/i4l/isdn_tty.c
@@ -3425,7 +3425,6 @@ isdn_tty_parse_at(modem_info *info)
 			p++;
 			isdn_tty_cmd_ATA(info);
 			return;
-			break;
 		case 'D':
 			/* D - Dial */
 			if (info->msr & UART_MSR_DCD)
-- 
1.7.7.6

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

* Re: drivers/isdn: beautify code, delete 'break' after 'return'
  2013-02-27  9:13 drivers/isdn: beautify code, delete 'break' after 'return' Chen Gang
@ 2013-02-27  9:14 ` Chen Gang
  2013-02-27  9:16 ` [PATCH] " Chen Gang
  1 sibling, 0 replies; 6+ messages in thread
From: Chen Gang @ 2013-02-27  9:14 UTC (permalink / raw)
  To: Jiri Kosina, isdn, Jiri Slaby; +Cc: Greg KH, alan, netdev


  oh, sorry, the subject misses [PATCH], I will send again.


于 2013年02月27日 17:13, Chen Gang 写道:
> 
>   delete 'break' statement after 'return' statement
> 
> Signed-off-by: Chen Gang <gang.chen@asianux.com>
> ---
>  drivers/isdn/i4l/isdn_tty.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c
> index d8a7d83..925a7ed 100644
> --- a/drivers/isdn/i4l/isdn_tty.c
> +++ b/drivers/isdn/i4l/isdn_tty.c
> @@ -3425,7 +3425,6 @@ isdn_tty_parse_at(modem_info *info)
>  			p++;
>  			isdn_tty_cmd_ATA(info);
>  			return;
> -			break;
>  		case 'D':
>  			/* D - Dial */
>  			if (info->msr & UART_MSR_DCD)
> 


-- 
Chen Gang

Asianux Corporation

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

* [PATCH] drivers/isdn: beautify code, delete 'break' after 'return'
  2013-02-27  9:13 drivers/isdn: beautify code, delete 'break' after 'return' Chen Gang
  2013-02-27  9:14 ` Chen Gang
@ 2013-02-27  9:16 ` Chen Gang
  2013-03-15  2:04   ` Chen Gang
  1 sibling, 1 reply; 6+ messages in thread
From: Chen Gang @ 2013-02-27  9:16 UTC (permalink / raw)
  To: Jiri Kosina, isdn, Jiri Slaby; +Cc: Greg KH, alan, netdev


  delete 'break' statement after 'return' statement

Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
 drivers/isdn/i4l/isdn_tty.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c
index d8a7d83..925a7ed 100644
--- a/drivers/isdn/i4l/isdn_tty.c
+++ b/drivers/isdn/i4l/isdn_tty.c
@@ -3425,7 +3425,6 @@ isdn_tty_parse_at(modem_info *info)
 			p++;
 			isdn_tty_cmd_ATA(info);
 			return;
-			break;
 		case 'D':
 			/* D - Dial */
 			if (info->msr & UART_MSR_DCD)
-- 
1.7.7.6

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

* Re: [PATCH] drivers/isdn: beautify code, delete 'break' after 'return'
  2013-02-27  9:16 ` [PATCH] " Chen Gang
@ 2013-03-15  2:04   ` Chen Gang
  2013-03-18 13:25     ` Jiri Kosina
  0 siblings, 1 reply; 6+ messages in thread
From: Chen Gang @ 2013-03-15  2:04 UTC (permalink / raw)
  To: Jiri Kosina, isdn, Jiri Slaby; +Cc: Greg KH, alan, netdev

Hello Maintainers:

  is it patch ok ?

  thanks.

于 2013年02月27日 17:16, Chen Gang 写道:
> 
>   delete 'break' statement after 'return' statement
> 
> Signed-off-by: Chen Gang <gang.chen@asianux.com>
> ---
>  drivers/isdn/i4l/isdn_tty.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c
> index d8a7d83..925a7ed 100644
> --- a/drivers/isdn/i4l/isdn_tty.c
> +++ b/drivers/isdn/i4l/isdn_tty.c
> @@ -3425,7 +3425,6 @@ isdn_tty_parse_at(modem_info *info)
>  			p++;
>  			isdn_tty_cmd_ATA(info);
>  			return;
> -			break;
>  		case 'D':
>  			/* D - Dial */
>  			if (info->msr & UART_MSR_DCD)
> 


-- 
Chen Gang

Asianux Corporation

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

* Re: [PATCH] drivers/isdn: beautify code, delete 'break' after 'return'
  2013-03-15  2:04   ` Chen Gang
@ 2013-03-18 13:25     ` Jiri Kosina
  2013-03-19  0:53       ` Chen Gang
  0 siblings, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2013-03-18 13:25 UTC (permalink / raw)
  To: Chen Gang; +Cc: isdn, Jiri Slaby, Greg KH, alan, netdev

On Fri, 15 Mar 2013, Chen Gang wrote:

> Hello Maintainers:
> 
>   is it patch ok ?

This one is now applied.

-- 
Jiri Kosina
SUSE Labs

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

* Re: [PATCH] drivers/isdn: beautify code, delete 'break' after 'return'
  2013-03-18 13:25     ` Jiri Kosina
@ 2013-03-19  0:53       ` Chen Gang
  0 siblings, 0 replies; 6+ messages in thread
From: Chen Gang @ 2013-03-19  0:53 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: isdn, Jiri Slaby, Greg KH, alan, netdev

On 2013年03月18日 21:25, Jiri Kosina wrote:
> On Fri, 15 Mar 2013, Chen Gang wrote:
> 
>> > Hello Maintainers:
>> > 
>> >   is it patch ok ?
> This one is now applied.

  thanks.

-- 
Chen Gang

Asianux Corporation

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

end of thread, other threads:[~2013-03-19  0:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-27  9:13 drivers/isdn: beautify code, delete 'break' after 'return' Chen Gang
2013-02-27  9:14 ` Chen Gang
2013-02-27  9:16 ` [PATCH] " Chen Gang
2013-03-15  2:04   ` Chen Gang
2013-03-18 13:25     ` Jiri Kosina
2013-03-19  0:53       ` Chen Gang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.