From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5AD813DEFFE for ; Thu, 6 Aug 2026 08:22:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786004545; cv=none; b=enHLmK5hMDkpiC2J8/5DjZe3IMm9lUN6mj7mazqnNaRpWagstEaGKWxPBlX3mbsMCRC+XWWiNJGZtvO0faHfnnhx66dK0mRxqPdK8WDjMXmQ9We2+i0/xPgVcoNrmC8M1YG+uoUk6Ei2Y8hvX876o6A6v1rV8rhTABF7HXyV7aA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786004545; c=relaxed/simple; bh=ngEs8T6fKAamW1BCHsd+OZaUiW8gWxd7RrqUghtvVRg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=h2VVPHW062BPyBRoT5kTGJVnBLjzZgok1gUQJnt5gxefJq2PFw1/P9D+klnmpabnDOY0ym2n1dEEG65H2NgtGKTR4mDJxmXV1NgYMHGxSlRIWrj2qxY47GXgw6/jI4T9mPGIryJ4nxUoX8nPd0bChObQkFyeW5Nyoazp5WoZvEI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gbk8KHi3; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gbk8KHi3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3FF0B1F000E9; Thu, 6 Aug 2026 08:22:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786004543; bh=30Hpli1hUL5BRotYqfPUYiWViRR9D1tLB68FbxIC+3c=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=gbk8KHi3oKl2htipQbt3wYW9w0H10o2Q46XYFJslWVpDbD9IqfP53CiLdqzSeHJ3e 7mzRNw/KAQZDmmGKdhkI2aQmBf4d4O2INGDoV/ESfm8cva/0ARVyn3Vkc5nCCOSmJj I2p9qVWUTO50/jVgV0mt2u/q80OXp0mC2wxeJdM8RX4JaTFiO9WYW0Wr5ExQZRjD3X 1vvMzC3DxghRGs/KjS9zFt7VHgAIoO5aiMXwuPWR7VgtnzFQ2qhj5STLNdoo1Vem4y 2YMNQ8IoSN7DnEQaPcd0512UqZZ0EootBIKCBhPgblA5bNDaoUGipO1JuyCeIUJgqS 8Ech0iN9epG/A== Date: Thu, 6 Aug 2026 10:22:19 +0200 From: Ingo Molnar To: Chaohong Guo Cc: peterz@infradead.org, tim.c.chen@linux.intel.com, bp@alien8.de, x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 1/2] x86/cpu/hygon: Introduce macros for hygon family numbers Message-ID: References: <20260806003509.1841003-1-guochaohong@open-hieco.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260806003509.1841003-1-guochaohong@open-hieco.net> * Chaohong Guo wrote: > --- /dev/null > +++ b/arch/x86/include/asm/hygon-family.h > @@ -0,0 +1,17 @@ > +/* SPDX-License-Identifier: GPL-2.0 */ > +/* > + * The helpers to support Hygon CPU specific code path. > + */ > + > +#ifndef _ASM_X86_HYGON_FAMILY_H > +#define _ASM_X86_HYGON_FAMILY_H Why is the header guard ordering different from : /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_X86_INTEL_FAMILY_H #define _ASM_X86_INTEL_FAMILY_H /* * "Big Core" Processors (Branded as Core, Xeon, etc...) * Please follow the standard header guard ordering in as well. Thanks, Ingo