From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752097AbdASKrC (ORCPT ); Thu, 19 Jan 2017 05:47:02 -0500 Received: from 65-50-211-136.cust.layer42.net ([65.50.211.136]:56810 "EHLO terminus.zytor.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1750894AbdASKrA (ORCPT ); Thu, 19 Jan 2017 05:47:00 -0500 X-Greylist: delayed 5365 seconds by postgrey-1.27 at vger.kernel.org; Thu, 19 Jan 2017 05:46:58 EST Date: Thu, 19 Jan 2017 01:10:46 -0800 From: "tip-bot for Luis R. Rodriguez" Message-ID: Cc: tglx@linutronix.de, mcgrof@kernel.org, hpa@zytor.com, peterz@infradead.org, mingo@kernel.org, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org Reply-To: torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, mingo@kernel.org, peterz@infradead.org, hpa@zytor.com, mcgrof@kernel.org, tglx@linutronix.de In-Reply-To: <20170118173804.16281-1-mcgrof@kernel.org> References: <20170118173804.16281-1-mcgrof@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:locking/core] jump_labels: Move header guard #endif down where it belongs Git-Commit-ID: 85b36c931ff328297572a3e6136fac573795ad79 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: 85b36c931ff328297572a3e6136fac573795ad79 Gitweb: http://git.kernel.org/tip/85b36c931ff328297572a3e6136fac573795ad79 Author: Luis R. Rodriguez AuthorDate: Wed, 18 Jan 2017 09:38:04 -0800 Committer: Ingo Molnar CommitDate: Thu, 19 Jan 2017 08:40:44 +0100 jump_labels: Move header guard #endif down where it belongs The ending header guard is misplaced. This has no functional change, this is just an eye-sore. Signed-off-by: Luis R. Rodriguez Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: bp@alien8.de Cc: bp@suse.de Cc: catalin.marinas@arm.com Cc: jbaron@akamai.com Cc: pbonzini@redhat.com Cc: tony.luck@intel.com Link: http://lkml.kernel.org/r/20170118173804.16281-1-mcgrof@kernel.org Signed-off-by: Ingo Molnar --- include/linux/jump_label.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/jump_label.h b/include/linux/jump_label.h index a0547c5..b63d6b7 100644 --- a/include/linux/jump_label.h +++ b/include/linux/jump_label.h @@ -402,6 +402,6 @@ extern bool ____wrong_branch_error(void); #define static_branch_enable(x) static_key_enable(&(x)->key) #define static_branch_disable(x) static_key_disable(&(x)->key) -#endif /* _LINUX_JUMP_LABEL_H */ - #endif /* __ASSEMBLY__ */ + +#endif /* _LINUX_JUMP_LABEL_H */