Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1193154

[PATCH v4 2/7] clocksource: mips-gic: Add missing error returns checks

From Govindraj Raja <govindraj.raja@imgtec.com>
Newsgroups linux.kernel
Subject [PATCH v4 2/7] clocksource: mips-gic: Add missing error returns checks
Date 2015-07-27 16:10 +0200
Message-ID <pQRgo-46U-61@gated-at.bofh.it> (permalink)
References <pQRgm-46U-27@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Ezequiel Garcia <ezequiel.garcia@imgtec.com>

This commit adds the required checks on the functions that return
an error. Some of them are not critical, so only a warning is
printed.

Reviewed-by: Andrew Bresticker <abrestic@chromium.org>
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@imgtec.com>
---
 drivers/clocksource/mips-gic-timer.c | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/drivers/clocksource/mips-gic-timer.c b/drivers/clocksource/mips-gic-timer.c
index 913585d..c4352f0 100644
--- a/drivers/clocksource/mips-gic-timer.c
+++ b/drivers/clocksource/mips-gic-timer.c
@@ -100,12 +100,18 @@ static struct notifier_block gic_cpu_nb = {
 
 static int gic_clockevent_init(void)
 {
+	int ret;
+
 	if (!cpu_has_counter || !gic_frequency)
 		return -ENXIO;
 
-	setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
+	ret = setup_percpu_irq(gic_timer_irq, &gic_compare_irqaction);
+	if (ret < 0)
+		return ret;
 
-	register_cpu_notifier(&gic_cpu_nb);
+	ret = register_cpu_notifier(&gic_cpu_nb);
+	if (ret < 0)
+		pr_warn("GIC: Unable to register CPU notifier\n");
 
 	gic_clockevent_cpu_init(this_cpu_ptr(&gic_clockevent_device));
 
@@ -125,13 +131,17 @@ static struct clocksource gic_clocksource = {
 
 static void __init __gic_clocksource_init(void)
 {
+	int ret;
+
 	/* Set clocksource mask. */
 	gic_clocksource.mask = CLOCKSOURCE_MASK(gic_get_count_width());
 
 	/* Calculate a somewhat reasonable rating value. */
 	gic_clocksource.rating = 200 + gic_frequency / 10000000;
 
-	clocksource_register_hz(&gic_clocksource, gic_frequency);
+	ret = clocksource_register_hz(&gic_clocksource, gic_frequency);
+	if (ret < 0)
+		pr_warn("GIC: Unable to register clocksource\n");
 
 	gic_clockevent_init();
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v4 0/7] Clocksource changes for Pistachio CPUFreq. Govindraj Raja <govindraj.raja@imgtec.com> - 2015-07-27 16:10 +0200
  [PATCH v4 2/7] clocksource: mips-gic: Add missing error returns checks Govindraj Raja <govindraj.raja@imgtec.com> - 2015-07-27 16:10 +0200
  Re: [PATCH v4 0/7] Clocksource changes for Pistachio CPUFreq. Ralf Baechle <ralf@linux-mips.org> - 2015-07-28 12:00 +0200
    Re: [PATCH v4 0/7] Clocksource changes for Pistachio CPUFreq. Daniel Lezcano <daniel.lezcano@linaro.org> - 2015-08-04 11:50 +0200

csiph-web