mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] [FOR SQUASH] clocksource: dummy.c: remove Kconfig warning
@ 2014-03-19 11:29 Antony Pavlov
  2014-03-19 20:45 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Antony Pavlov @ 2014-03-19 11:29 UTC (permalink / raw)
  To: barebox

This patch removes this warning during 'make *config':

  drivers/clocksource/Kconfig:36:warning: leading whitespace ignored

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 drivers/clocksource/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index f53c933..43974f0 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -32,7 +32,8 @@ config CLOCKSOURCE_DUMMY
 	  was initialized.
 
 config CLOCKSOURCE_DUMMY_RATE
-	int "  dummy clocksource rate"
+	int
+	prompt "dummy clocksource rate"
 	depends on CLOCKSOURCE_DUMMY
 	default 1000
 
-- 
1.9.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] [FOR SQUASH] clocksource: dummy.c: remove Kconfig warning
  2014-03-19 11:29 [PATCH] [FOR SQUASH] clocksource: dummy.c: remove Kconfig warning Antony Pavlov
@ 2014-03-19 20:45 ` Sascha Hauer
  2014-03-20  7:39   ` Antony Pavlov
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2014-03-19 20:45 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

On Wed, Mar 19, 2014 at 03:29:12PM +0400, Antony Pavlov wrote:
> This patch removes this warning during 'make *config':
> 
>   drivers/clocksource/Kconfig:36:warning: leading whitespace ignored
> 
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>

Also squashed into the original commit.

Sascha

> ---
>  drivers/clocksource/Kconfig | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
> index f53c933..43974f0 100644
> --- a/drivers/clocksource/Kconfig
> +++ b/drivers/clocksource/Kconfig
> @@ -32,7 +32,8 @@ config CLOCKSOURCE_DUMMY
>  	  was initialized.
>  
>  config CLOCKSOURCE_DUMMY_RATE
> -	int "  dummy clocksource rate"
> +	int
> +	prompt "dummy clocksource rate"
>  	depends on CLOCKSOURCE_DUMMY
>  	default 1000
>  
> -- 
> 1.9.0
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] [FOR SQUASH] clocksource: dummy.c: remove Kconfig warning
  2014-03-19 20:45 ` Sascha Hauer
@ 2014-03-20  7:39   ` Antony Pavlov
  0 siblings, 0 replies; 3+ messages in thread
From: Antony Pavlov @ 2014-03-20  7:39 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

On Wed, 19 Mar 2014 21:45:29 +0100
Sascha Hauer <s.hauer@pengutronix.de> wrote:

> On Wed, Mar 19, 2014 at 03:29:12PM +0400, Antony Pavlov wrote:
> > This patch removes this warning during 'make *config':
> > 
> >   drivers/clocksource/Kconfig:36:warning: leading whitespace ignored
> > 
> > Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
> 
> Also squashed into the original commit.

Excuse me for my Treppenwitz!

Could you please change

+	int
+	prompt "dummy clocksource rate"

to more usual

+	int "dummy clocksource rate"
?

I'm so sorry!

]> 
> > ---
> >  drivers/clocksource/Kconfig | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
> > index f53c933..43974f0 100644
> > --- a/drivers/clocksource/Kconfig
> > +++ b/drivers/clocksource/Kconfig
> > @@ -32,7 +32,8 @@ config CLOCKSOURCE_DUMMY
> >  	  was initialized.
> >  
> >  config CLOCKSOURCE_DUMMY_RATE
> > -	int "  dummy clocksource rate"
> > +	int
> > +	prompt "dummy clocksource rate"
> >  	depends on CLOCKSOURCE_DUMMY
> >  	default 1000
> >  
> > -- 
> > 1.9.0
> > 
> > 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2014-03-20  7:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-19 11:29 [PATCH] [FOR SQUASH] clocksource: dummy.c: remove Kconfig warning Antony Pavlov
2014-03-19 20:45 ` Sascha Hauer
2014-03-20  7:39   ` Antony Pavlov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox