linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clocksource/h8300_timer8: Fix wrong return value in h8300_8timer_init()
@ 2020-08-02 11:15 Tianjia Zhang
  2020-08-02 12:47 ` Daniel Lezcano
  2020-09-27  9:27 ` [tip: timers/urgent] clocksource/drivers/h8300_timer8: " tip-bot2 for Tianjia Zhang
  0 siblings, 2 replies; 3+ messages in thread
From: Tianjia Zhang @ 2020-08-02 11:15 UTC (permalink / raw)
  To: ysato, daniel.lezcano, tglx; +Cc: uclinux-h8-devel, linux-kernel, tianjia.zhang

In the case of calling of_iomap() failed, a positive value ENXIO is
returned here. I think this is a typo error. It is necessary to return
a negative error value.

Fixes: 691f8f878290f ("clocksource/drivers/h8300_timer8: Convert init function to return error")
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
---
 drivers/clocksource/h8300_timer8.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clocksource/h8300_timer8.c b/drivers/clocksource/h8300_timer8.c
index 1d740a8c42ab..47114c2a7cb5 100644
--- a/drivers/clocksource/h8300_timer8.c
+++ b/drivers/clocksource/h8300_timer8.c
@@ -169,7 +169,7 @@ static int __init h8300_8timer_init(struct device_node *node)
 		return PTR_ERR(clk);
 	}
 
-	ret = ENXIO;
+	ret = -ENXIO;
 	base = of_iomap(node, 0);
 	if (!base) {
 		pr_err("failed to map registers for clockevent\n");
-- 
2.26.2


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

* Re: [PATCH] clocksource/h8300_timer8: Fix wrong return value in h8300_8timer_init()
  2020-08-02 11:15 [PATCH] clocksource/h8300_timer8: Fix wrong return value in h8300_8timer_init() Tianjia Zhang
@ 2020-08-02 12:47 ` Daniel Lezcano
  2020-09-27  9:27 ` [tip: timers/urgent] clocksource/drivers/h8300_timer8: " tip-bot2 for Tianjia Zhang
  1 sibling, 0 replies; 3+ messages in thread
From: Daniel Lezcano @ 2020-08-02 12:47 UTC (permalink / raw)
  To: Tianjia Zhang, ysato, tglx; +Cc: uclinux-h8-devel, linux-kernel, tianjia.zhang

On 02/08/2020 13:15, Tianjia Zhang wrote:
> In the case of calling of_iomap() failed, a positive value ENXIO is
> returned here. I think this is a typo error. It is necessary to return
> a negative error value.

Yes, it is.

Applied, thanks for the fix.

  -- Daniel

-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

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

* [tip: timers/urgent] clocksource/drivers/h8300_timer8: Fix wrong return value in h8300_8timer_init()
  2020-08-02 11:15 [PATCH] clocksource/h8300_timer8: Fix wrong return value in h8300_8timer_init() Tianjia Zhang
  2020-08-02 12:47 ` Daniel Lezcano
@ 2020-09-27  9:27 ` tip-bot2 for Tianjia Zhang
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Tianjia Zhang @ 2020-09-27  9:27 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Daniel Lezcano, Tianjia Zhang, x86, LKML

The following commit has been merged into the timers/urgent branch of tip:

Commit-ID:     400d033f5a599120089b5f0c54d14d198499af5a
Gitweb:        https://git.kernel.org/tip/400d033f5a599120089b5f0c54d14d198499af5a
Author:        Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
AuthorDate:    Sun, 02 Aug 2020 19:15:41 +08:00
Committer:     Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Mon, 24 Aug 2020 13:01:38 +02:00

clocksource/drivers/h8300_timer8: Fix wrong return value in h8300_8timer_init()

In the init function, if the call to of_iomap() fails, the return
value is ENXIO instead of -ENXIO.

Change to the right negative errno.

Fixes: 691f8f878290f ("clocksource/drivers/h8300_timer8: Convert init function to return error")
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200802111541.5429-1-tianjia.zhang@linux.alibaba.com
---
 drivers/clocksource/h8300_timer8.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clocksource/h8300_timer8.c b/drivers/clocksource/h8300_timer8.c
index 1d740a8..47114c2 100644
--- a/drivers/clocksource/h8300_timer8.c
+++ b/drivers/clocksource/h8300_timer8.c
@@ -169,7 +169,7 @@ static int __init h8300_8timer_init(struct device_node *node)
 		return PTR_ERR(clk);
 	}
 
-	ret = ENXIO;
+	ret = -ENXIO;
 	base = of_iomap(node, 0);
 	if (!base) {
 		pr_err("failed to map registers for clockevent\n");

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

end of thread, other threads:[~2020-09-27  9:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-02 11:15 [PATCH] clocksource/h8300_timer8: Fix wrong return value in h8300_8timer_init() Tianjia Zhang
2020-08-02 12:47 ` Daniel Lezcano
2020-09-27  9:27 ` [tip: timers/urgent] clocksource/drivers/h8300_timer8: " tip-bot2 for Tianjia Zhang

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).