From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S942252AbdDTLPf (ORCPT ); Thu, 20 Apr 2017 07:15:35 -0400 Received: from terminus.zytor.com ([65.50.211.136]:33325 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S941657AbdDTLP2 (ORCPT ); Thu, 20 Apr 2017 07:15:28 -0400 Date: Thu, 20 Apr 2017 04:13:13 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: jolsa@kernel.org, namhyung@kernel.org, adrian.hunter@intel.com, dsahern@gmail.com, hpa@zytor.com, wangnan0@huawei.com, linux-kernel@vger.kernel.org, mingo@kernel.org, tglx@linutronix.de, acme@redhat.com Reply-To: hpa@zytor.com, wangnan0@huawei.com, dsahern@gmail.com, adrian.hunter@intel.com, namhyung@kernel.org, jolsa@kernel.org, acme@redhat.com, tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: No need to include bitops.h in util.h Git-Commit-ID: 6dcca6df4b73d409628c7b4464c63d4eb9d4d13a 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: 6dcca6df4b73d409628c7b4464c63d4eb9d4d13a Gitweb: http://git.kernel.org/tip/6dcca6df4b73d409628c7b4464c63d4eb9d4d13a Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 18 Apr 2017 11:42:23 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 19 Apr 2017 13:01:54 -0300 perf tools: No need to include bitops.h in util.h When we switched to the kernel's roundup_pow_of_two we forgot to remove this include from util.h, do it now. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Fixes: 91529834d1de ("perf evlist: Use roundup_pow_of_two") Link: http://lkml.kernel.org/n/tip-kfye5rxivib6155cltx0bw4h@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/util.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/perf/util/util.h b/tools/perf/util/util.h index 6179656..423ed7f 100644 --- a/tools/perf/util/util.h +++ b/tools/perf/util/util.h @@ -35,7 +35,6 @@ #include #include #include -#include extern char buildid_dir[];