Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e595ede6 authored by Chen Gang's avatar Chen Gang Committed by Russell King
Browse files

ARM: 7664/1: perf: remove erroneous semicolon from event initialisation



Commit 9dcbf466 ("ARM: perf: simplify __hw_perf_event_init err
handling") tidied up the error handling code for perf event
initialisation on ARM, but a copy-and-paste error left a dangling
semicolon at the end of an if statement.

This patch removes the broken semicolon, restoring the old group
validation semantics.

Cc: Mark Rutland <mark.rutland@arm.com>
Acked-by: default avatarDirk Behme <dirk.behme@gmail.com>
Signed-off-by: default avatarChen Gang <gang.chen@asianux.com>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent f2fe09b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -400,7 +400,7 @@ __hw_perf_event_init(struct perf_event *event)
	}
	}


	if (event->group_leader != event) {
	if (event->group_leader != event) {
		if (validate_group(event) != 0);
		if (validate_group(event) != 0)
			return -EINVAL;
			return -EINVAL;
	}
	}