From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762622AbcINNhJ (ORCPT ); Wed, 14 Sep 2016 09:37:09 -0400 Received: from terminus.zytor.com ([198.137.202.10]:40146 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762483AbcINNhD (ORCPT ); Wed, 14 Sep 2016 09:37:03 -0400 Date: Wed, 14 Sep 2016 06:36:47 -0700 From: tip-bot for Paul Burton Message-ID: Cc: ralf@linux-mips.org, anna-maria@linutronix.de, tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, linux-kernel@vger.kernel.org, rcochran@linutronix.de, paul.burton@imgtec.com, bigeasy@linutronix.de Reply-To: hpa@zytor.com, anna-maria@linutronix.de, tglx@linutronix.de, bigeasy@linutronix.de, linux-kernel@vger.kernel.org, rcochran@linutronix.de, paul.burton@imgtec.com, mingo@kernel.org, ralf@linux-mips.org In-Reply-To: <20160914100027.20945-1-paul.burton@imgtec.com> References: <20160914100027.20945-1-paul.burton@imgtec.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:smp/urgent] cpu/hotplug: Include linux/types.h in linux/cpuhotplug.h Git-Commit-ID: 6cfeaf5125d425043d44002d0a1a8a147be582bf 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: 6cfeaf5125d425043d44002d0a1a8a147be582bf Gitweb: http://git.kernel.org/tip/6cfeaf5125d425043d44002d0a1a8a147be582bf Author: Paul Burton AuthorDate: Wed, 14 Sep 2016 11:00:26 +0100 Committer: Thomas Gleixner CommitDate: Wed, 14 Sep 2016 15:31:53 +0200 cpu/hotplug: Include linux/types.h in linux/cpuhotplug.h The linux/cpuhotplug.h header makes use of the bool type, but wasn't including linux/types.h to ensure that type has been defined. Fix this by including linux/types.h in preparation for including linux/cpuhotplug.h in a file that doesn't do so already. Signed-off-by: Paul Burton Cc: linux-mips@linux-mips.org Cc: Richard Cochran Cc: Sebastian Andrzej Siewior Cc: Ralf Baechle Cc: Anna-Maria Gleixner Link: http://lkml.kernel.org/r/20160914100027.20945-1-paul.burton@imgtec.com Signed-off-by: Thomas Gleixner --- include/linux/cpuhotplug.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index 242bf53..34bd805 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -1,6 +1,8 @@ #ifndef __CPUHOTPLUG_H #define __CPUHOTPLUG_H +#include + enum cpuhp_state { CPUHP_OFFLINE, CPUHP_CREATE_THREADS,