From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933548AbaJ3Gog (ORCPT ); Thu, 30 Oct 2014 02:44:36 -0400 Received: from terminus.zytor.com ([198.137.202.10]:38000 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757246AbaJ3God (ORCPT ); Thu, 30 Oct 2014 02:44:33 -0400 Date: Wed, 29 Oct 2014 23:43:26 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: eranian@google.com, acme@redhat.com, namhyung@kernel.org, peterz@infradead.org, linux-kernel@vger.kernel.org, adrian.hunter@intel.com, fweisbec@gmail.com, jolsa@redhat.com, hpa@zytor.com, jean.pihet@linaro.org, tglx@linutronix.de, paulus@samba.org, dsahern@gmail.com, efault@gmx.de, mingo@kernel.org, dzickus@redhat.com, bp@suse.de Reply-To: dsahern@gmail.com, paulus@samba.org, bp@suse.de, dzickus@redhat.com, mingo@kernel.org, efault@gmx.de, acme@redhat.com, namhyung@kernel.org, eranian@google.com, jean.pihet@linaro.org, tglx@linutronix.de, hpa@zytor.com, jolsa@redhat.com, fweisbec@gmail.com, adrian.hunter@intel.com, linux-kernel@vger.kernel.org, peterz@infradead.org To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tests: Remove misplaced __maybe_unused Git-Commit-ID: f498784c39c7c840347e28b830aedc31ce699816 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: f498784c39c7c840347e28b830aedc31ce699816 Gitweb: http://git.kernel.org/tip/f498784c39c7c840347e28b830aedc31ce699816 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 23 Oct 2014 17:20:38 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 29 Oct 2014 10:32:46 -0200 perf tests: Remove misplaced __maybe_unused The 'machine' parameter is used in this function, ditch the __maybe_unused annotation, not needed. Cc: Adrian Hunter Cc: Borislav Petkov Cc: David Ahern Cc: Don Zickus Cc: Frederic Weisbecker Cc: Jean Pihet Cc: Jiri Olsa Cc: Mike Galbraith Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Link: http://lkml.kernel.org/n/tip-dme1nsu07a0spkmcl401srec@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/tests/hists_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/tests/hists_filter.c b/tools/perf/tests/hists_filter.c index 5a31787..74f257a 100644 --- a/tools/perf/tests/hists_filter.c +++ b/tools/perf/tests/hists_filter.c @@ -43,7 +43,7 @@ static struct sample fake_samples[] = { }; static int add_hist_entries(struct perf_evlist *evlist, - struct machine *machine __maybe_unused) + struct machine *machine) { struct perf_evsel *evsel; struct addr_location al;