linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bus: arm-ccn: Fix cpu notifier priority
@ 2016-03-08 12:14 Jan Glauber
  2016-03-09  8:40 ` Pawel Moll
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Glauber @ 2016-03-08 12:14 UTC (permalink / raw)
  To: linux-arm-kernel

Fix cpu priority of notifier block that was erroneously set to
return value of next statement.

Signed-off-by: Jan Glauber <jglauber@cavium.com>
---
 drivers/bus/arm-ccn.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/bus/arm-ccn.c b/drivers/bus/arm-ccn.c
index 7082c72..d4a939e 100644
--- a/drivers/bus/arm-ccn.c
+++ b/drivers/bus/arm-ccn.c
@@ -1271,7 +1271,7 @@ static int arm_ccn_pmu_init(struct arm_ccn *ccn)
 	 * picked to have a chance to migrate events before perf is notified.
 	 */
 	ccn->dt.cpu_nb.notifier_call = arm_ccn_pmu_cpu_notifier;
-	ccn->dt.cpu_nb.priority = CPU_PRI_PERF + 1,
+	ccn->dt.cpu_nb.priority = CPU_PRI_PERF + 1;
 	err = register_cpu_notifier(&ccn->dt.cpu_nb);
 	if (err)
 		goto error_cpu_notifier;
-- 
1.9.1

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

end of thread, other threads:[~2016-03-10 14:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-08 12:14 [PATCH] bus: arm-ccn: Fix cpu notifier priority Jan Glauber
2016-03-09  8:40 ` Pawel Moll
2016-03-09 14:24   ` Jan Glauber
2016-03-10 14:34   ` Jan Glauber
2016-03-10 14:56     ` Pawel Moll

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