* [PATCH 1/1] cloclsource: tegra: cosmetic: Fix error message
@ 2012-12-17 6:33 Hiroshi Doyu
[not found] ` <1355726004-16137-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Hiroshi Doyu @ 2012-12-17 6:33 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA; +Cc: Hiroshi Doyu
Add missing \n.
Signed-off-by: Hiroshi Doyu <hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
Based on Stephen's arm_timer_rework tree
---
drivers/clocksource/tegra20_timer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clocksource/tegra20_timer.c b/drivers/clocksource/tegra20_timer.c
index 3b2f947..5bc1429 100644
--- a/drivers/clocksource/tegra20_timer.c
+++ b/drivers/clocksource/tegra20_timer.c
@@ -179,7 +179,7 @@ static void __init tegra20_init_timer(void)
timer_reg_base = of_iomap(np, 0);
if (!timer_reg_base) {
- pr_err("Can't map timer registers");
+ pr_err("Can't map timer registers\n");
BUG();
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread[parent not found: <1355726004-16137-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH 1/1] cloclsource: tegra: cosmetic: Fix error message [not found] ` <1355726004-16137-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> @ 2012-12-17 9:32 ` Peter De Schrijver [not found] ` <20121217093230.GE19258-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Peter De Schrijver @ 2012-12-17 9:32 UTC (permalink / raw) To: Hiroshi Doyu; +Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org On Mon, Dec 17, 2012 at 07:33:24AM +0100, Hiroshi Doyu wrote: > Add missing \n. Maybe also fix the typo in the subject? :) > > Signed-off-by: Hiroshi Doyu <hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > --- > Based on Stephen's arm_timer_rework tree > --- > drivers/clocksource/tegra20_timer.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/clocksource/tegra20_timer.c b/drivers/clocksource/tegra20_timer.c > index 3b2f947..5bc1429 100644 > --- a/drivers/clocksource/tegra20_timer.c > +++ b/drivers/clocksource/tegra20_timer.c > @@ -179,7 +179,7 @@ static void __init tegra20_init_timer(void) > > timer_reg_base = of_iomap(np, 0); > if (!timer_reg_base) { > - pr_err("Can't map timer registers"); > + pr_err("Can't map timer registers\n"); > BUG(); > } Cheers, Peter. ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20121217093230.GE19258-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>]
* [v2 1/1] clocksource: tegra: cosmetic: Fix error message [not found] ` <20121217093230.GE19258-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org> @ 2012-12-17 11:35 ` Hiroshi Doyu [not found] ` <1355744123-27666-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Hiroshi Doyu @ 2012-12-17 11:35 UTC (permalink / raw) To: linux-tegra-u79uwXL29TY76Z2rM5mHXA Cc: pdeschrijver-DDmLM1+adcrQT0dZR+AlfA, Hiroshi Doyu Add missing \n. Signed-off-by: Hiroshi Doyu <hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> --- Update: Fix misspelling in the subject line --- drivers/clocksource/tegra20_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/tegra20_timer.c b/drivers/clocksource/tegra20_timer.c index 3b2f947..5bc1429 100644 --- a/drivers/clocksource/tegra20_timer.c +++ b/drivers/clocksource/tegra20_timer.c @@ -179,7 +179,7 @@ static void __init tegra20_init_timer(void) timer_reg_base = of_iomap(np, 0); if (!timer_reg_base) { - pr_err("Can't map timer registers"); + pr_err("Can't map timer registers\n"); BUG(); } -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
[parent not found: <1355744123-27666-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>]
* Re: [v2 1/1] clocksource: tegra: cosmetic: Fix error message [not found] ` <1355744123-27666-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> @ 2013-01-02 18:59 ` Stephen Warren 0 siblings, 0 replies; 4+ messages in thread From: Stephen Warren @ 2013-01-02 18:59 UTC (permalink / raw) To: Hiroshi Doyu Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, pdeschrijver-DDmLM1+adcrQT0dZR+AlfA On 12/17/2012 04:35 AM, Hiroshi Doyu wrote: > Add missing \n. Applied to Tegra's for-3.9/cleanup branch. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-01-02 18:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-17 6:33 [PATCH 1/1] cloclsource: tegra: cosmetic: Fix error message Hiroshi Doyu
[not found] ` <1355726004-16137-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-12-17 9:32 ` Peter De Schrijver
[not found] ` <20121217093230.GE19258-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
2012-12-17 11:35 ` [v2 1/1] clocksource: " Hiroshi Doyu
[not found] ` <1355744123-27666-1-git-send-email-hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-01-02 18:59 ` Stephen Warren
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox