From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751021AbdALI27 (ORCPT ); Thu, 12 Jan 2017 03:28:59 -0500 Received: from terminus.zytor.com ([198.137.202.10]:34674 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750734AbdALI25 (ORCPT ); Thu, 12 Jan 2017 03:28:57 -0500 Date: Thu, 12 Jan 2017 00:28:39 -0800 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: mingo@kernel.org, wangnan0@huawei.com, tglx@linutronix.de, acme@redhat.com, hpa@zytor.com, jpoimboe@redhat.com, linux-kernel@vger.kernel.org, namhyung@kernel.org, jolsa@kernel.org Reply-To: namhyung@kernel.org, linux-kernel@vger.kernel.org, jpoimboe@redhat.com, jolsa@kernel.org, mingo@kernel.org, wangnan0@huawei.com, hpa@zytor.com, acme@redhat.com, tglx@linutronix.de To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] tools lib subcmd: Add missing linux/kernel.h include to subcmd.h Git-Commit-ID: d5f805c09620dadc1a7806fbd46189d183f6c395 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: d5f805c09620dadc1a7806fbd46189d183f6c395 Gitweb: http://git.kernel.org/tip/d5f805c09620dadc1a7806fbd46189d183f6c395 Author: Arnaldo Carvalho de Melo AuthorDate: Thu, 5 Jan 2017 12:44:05 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 11 Jan 2017 16:48:00 -0300 tools lib subcmd: Add missing linux/kernel.h include to subcmd.h As it was getting the BUILD_BUG_ON_ZERO() definition by luck. Cc: Jiri Olsa Cc: Wang Nan Cc: Josh Poimboeuf Cc: Namhyung Kim Link: http://lkml.kernel.org/n/tip-dh71o31ar72ajck8o2x4aoae@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/lib/subcmd/parse-options.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/lib/subcmd/parse-options.h b/tools/lib/subcmd/parse-options.h index 11c3be3..37e2d1a 100644 --- a/tools/lib/subcmd/parse-options.h +++ b/tools/lib/subcmd/parse-options.h @@ -1,6 +1,7 @@ #ifndef __SUBCMD_PARSE_OPTIONS_H #define __SUBCMD_PARSE_OPTIONS_H +#include #include #include