From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752632AbdCAKnL (ORCPT ); Wed, 1 Mar 2017 05:43:11 -0500 Received: from terminus.zytor.com ([65.50.211.136]:48460 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751475AbdCAKnB (ORCPT ); Wed, 1 Mar 2017 05:43:01 -0500 Date: Wed, 1 Mar 2017 02:32:41 -0800 From: tip-bot for Borislav Petkov Message-ID: Cc: hpa@zytor.com, linux-kernel@vger.kernel.org, mingo@kernel.org, tglx@linutronix.de, bp@suse.de Reply-To: tglx@linutronix.de, bp@suse.de, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: <20170221183639.16554-1-bp@alien8.de> References: <20170221183639.16554-1-bp@alien8.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/boot: Correct setup_header.start_sys name Git-Commit-ID: 8392f16d38bb5222c03073a3906b7fd272386faf 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: 8392f16d38bb5222c03073a3906b7fd272386faf Gitweb: http://git.kernel.org/tip/8392f16d38bb5222c03073a3906b7fd272386faf Author: Borislav Petkov AuthorDate: Tue, 21 Feb 2017 19:36:39 +0100 Committer: Thomas Gleixner CommitDate: Wed, 1 Mar 2017 11:27:26 +0100 x86/boot: Correct setup_header.start_sys name It is called start_sys_seg elsewhere so rename it to that. It is an obsolete field so we could just as well directly call it __u16 __pad... No functional change. Signed-off-by: Borislav Petkov Link: http://lkml.kernel.org/r/20170221183639.16554-1-bp@alien8.de Signed-off-by: Thomas Gleixner --- arch/x86/include/uapi/asm/bootparam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/uapi/asm/bootparam.h b/arch/x86/include/uapi/asm/bootparam.h index 5138dac..07244ea 100644 --- a/arch/x86/include/uapi/asm/bootparam.h +++ b/arch/x86/include/uapi/asm/bootparam.h @@ -58,7 +58,7 @@ struct setup_header { __u32 header; __u16 version; __u32 realmode_swtch; - __u16 start_sys; + __u16 start_sys_seg; __u16 kernel_version; __u8 type_of_loader; __u8 loadflags;