Skip to content

Commit 0717b5d

Browse files
1acegregkh
authored andcommitted
perf tools: Remove duplicate const qualifier
commit 3b556bced46aa6b1873da7faa18eff235e896adc upstream. Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1461577678-29517-1-git-send-email-eric.engestrom@imgtec.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent c7b8d98 commit 0717b5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/perf/util/thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ void thread__find_cpumode_addr_location(struct thread *thread,
227227
struct addr_location *al)
228228
{
229229
size_t i;
230-
const u8 const cpumodes[] = {
230+
const u8 cpumodes[] = {
231231
PERF_RECORD_MISC_USER,
232232
PERF_RECORD_MISC_KERNEL,
233233
PERF_RECORD_MISC_GUEST_USER,

0 commit comments

Comments
 (0)