All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: OMAP: remove unused variable
Date: Tue, 23 Apr 2013 21:23:27 +0000	[thread overview]
Message-ID: <201304232323.27751.arnd@arndb.de> (raw)
In-Reply-To: <1363818875-15978-1-git-send-email-robherring2@gmail.com>

ARM: OMAP: remove unused variable
    
Commit 0583fe478a7 "ARM: convert arm/arm64 arch timer to use CLKSRC_OF init"
has left the omap5_realtime_timer_init() function with a stale variable and
broken whitespace. This fixes both.
    
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
I've applied this patch on top of the timer cleanup series

diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c
index 7dd6453..686e498 100644
--- a/arch/arm/mach-omap2/timer.c
+++ b/arch/arm/mach-omap2/timer.c
@@ -618,12 +618,10 @@ OMAP_SYS_32K_TIMER_INIT(5, 1, OMAP4_32K_SOURCE, "ti,timer-alwon",
 			2, OMAP4_MPU_SOURCE);
 void __init omap5_realtime_timer_init(void)
 {
-	int err;
-
 	omap5_sync32k_timer_init();
 	realtime_counter_init();
 
-        clocksource_of_init();
+	clocksource_of_init();
 }
 #endif /* CONFIG_SOC_OMAP5 */
 

WARNING: multiple messages have this Message-ID (diff)
From: Arnd Bergmann <arnd@arndb.de>
To: Rob Herring <robherring2@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Rob Herring <rob.herring@calxeda.com>,
	Russell King <linux@arm.linux.org.uk>,
	Kukjin Kim <kgene.kim@samsung.com>,
	Tony Lindgren <tony@atomide.com>,
	Simon Horman <horms@verge.net.au>,
	Magnus Damm <magnus.damm@gmail.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	John Stultz <john.stultz@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-samsung-soc@vger.kernel.org, linux-omap@vger.kernel.org,
	linux-sh@vger.kernel.org
Subject: [PATCH] ARM: OMAP: remove unused variable
Date: Tue, 23 Apr 2013 23:23:27 +0200	[thread overview]
Message-ID: <201304232323.27751.arnd@arndb.de> (raw)
In-Reply-To: <1363818875-15978-1-git-send-email-robherring2@gmail.com>

ARM: OMAP: remove unused variable
    
Commit 0583fe478a7 "ARM: convert arm/arm64 arch timer to use CLKSRC_OF init"
has left the omap5_realtime_timer_init() function with a stale variable and
broken whitespace. This fixes both.
    
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
I've applied this patch on top of the timer cleanup series

diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c
index 7dd6453..686e498 100644
--- a/arch/arm/mach-omap2/timer.c
+++ b/arch/arm/mach-omap2/timer.c
@@ -618,12 +618,10 @@ OMAP_SYS_32K_TIMER_INIT(5, 1, OMAP4_32K_SOURCE, "ti,timer-alwon",
 			2, OMAP4_MPU_SOURCE);
 void __init omap5_realtime_timer_init(void)
 {
-	int err;
-
 	omap5_sync32k_timer_init();
 	realtime_counter_init();
 
-        clocksource_of_init();
+	clocksource_of_init();
 }
 #endif /* CONFIG_SOC_OMAP5 */
 

WARNING: multiple messages have this Message-ID (diff)
From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: OMAP: remove unused variable
Date: Tue, 23 Apr 2013 23:23:27 +0200	[thread overview]
Message-ID: <201304232323.27751.arnd@arndb.de> (raw)
In-Reply-To: <1363818875-15978-1-git-send-email-robherring2@gmail.com>

ARM: OMAP: remove unused variable
    
Commit 0583fe478a7 "ARM: convert arm/arm64 arch timer to use CLKSRC_OF init"
has left the omap5_realtime_timer_init() function with a stale variable and
broken whitespace. This fixes both.
    
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
I've applied this patch on top of the timer cleanup series

diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c
index 7dd6453..686e498 100644
--- a/arch/arm/mach-omap2/timer.c
+++ b/arch/arm/mach-omap2/timer.c
@@ -618,12 +618,10 @@ OMAP_SYS_32K_TIMER_INIT(5, 1, OMAP4_32K_SOURCE, "ti,timer-alwon",
 			2, OMAP4_MPU_SOURCE);
 void __init omap5_realtime_timer_init(void)
 {
-	int err;
-
 	omap5_sync32k_timer_init();
 	realtime_counter_init();
 
-        clocksource_of_init();
+	clocksource_of_init();
 }
 #endif /* CONFIG_SOC_OMAP5 */
 

  parent reply	other threads:[~2013-04-23 21:23 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-20 22:34 [PATCH] ARM: convert arm/arm64 arch timer to use CLKSRC_OF init Rob Herring
2013-03-20 22:34 ` Rob Herring
2013-03-20 22:34 ` Rob Herring
2013-03-21 11:06 ` Mark Rutland
2013-03-21 11:06   ` Mark Rutland
2013-03-21 11:06   ` Mark Rutland
2013-03-21 11:06   ` Mark Rutland
2013-03-21 11:35   ` Marc Zyngier
2013-03-21 11:35     ` Marc Zyngier
2013-03-21 11:35     ` Marc Zyngier
2013-03-21 11:35     ` Marc Zyngier
2013-03-21 12:52   ` Rob Herring
2013-03-21 12:52     ` Rob Herring
2013-03-21 12:52     ` Rob Herring
2013-03-21 12:52     ` Rob Herring
2013-03-25 17:26   ` Russell King - ARM Linux
2013-03-25 17:26     ` Russell King - ARM Linux
2013-03-25 17:26     ` Russell King - ARM Linux
2013-03-25 17:26     ` Russell King - ARM Linux
2013-03-25 21:28     ` Rob Herring
2013-03-25 21:28       ` Rob Herring
2013-03-25 21:28       ` Rob Herring
2013-03-25 21:28       ` Rob Herring
2013-03-25 22:36       ` Arnd Bergmann
2013-03-25 22:36         ` Arnd Bergmann
2013-03-25 22:36         ` Arnd Bergmann
2013-03-25 22:36         ` Arnd Bergmann
2013-03-25 22:53         ` John Stultz
2013-03-25 22:53           ` John Stultz
2013-03-25 22:53           ` John Stultz
2013-03-25 22:53           ` John Stultz
2013-03-26  2:19           ` Rob Herring
2013-03-26  2:19             ` Rob Herring
2013-03-26  2:19             ` Rob Herring
2013-03-26  2:19             ` Rob Herring
2013-03-26  9:56           ` Arnd Bergmann
2013-03-26  9:56             ` Arnd Bergmann
2013-03-26  9:56             ` Arnd Bergmann
2013-03-26  9:56             ` Arnd Bergmann
2013-03-25 23:07       ` Catalin Marinas
2013-03-25 23:07         ` Catalin Marinas
2013-03-25 23:07         ` Catalin Marinas
2013-03-25 23:07         ` Catalin Marinas
2013-04-23 21:23 ` Arnd Bergmann [this message]
2013-04-23 21:23   ` [PATCH] ARM: OMAP: remove unused variable Arnd Bergmann
2013-04-23 21:23   ` Arnd Bergmann
2013-04-23 21:26   ` Tony Lindgren
2013-04-23 21:26     ` Tony Lindgren
2013-04-23 21:26     ` Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201304232323.27751.arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.