From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 C2D9911CAF for ; Thu, 15 Jan 2026 02:48:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768445326; cv=none; b=ghdTWaQBhwGLLhb7z0068GpVroepO15yrJslujwb0FaWx0nsLni6PIZKhMYTaCkKUYGUr1TPQsFgpocUy0mlylZd+V90BDGKCmdxE9qXLaV5AqxgzKkq9EjRdd7h8JOj9LAEHpr4EG5iwYlUjhiVlNDxEKCDFIgCuFHs79tYAWs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768445326; c=relaxed/simple; bh=BRM3KvYZAbsDWRlfgMnhQm5JQVq93gUjEvkpRH7cBOU=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References: MIME-Version:Content-Type; b=M/ETRXCJuaYbNmViNRhVPEde56JtRD+I2xiR3aiXdESavDljmuuNVpHO8KxnqQ8aT6liW6oFbaNmWVV3ZNXJ4JIirrVrzLTtWAzRJqq3U0VT6kKGGBPj2ZWHtXn5iqG8/n/YgdKWq1sGIK4qkyWSAuBmJkDPZtgpzFEay5j5QZY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=auhGW2wK; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="auhGW2wK" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 77F46C4CEF7; Thu, 15 Jan 2026 02:48:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768445326; bh=BRM3KvYZAbsDWRlfgMnhQm5JQVq93gUjEvkpRH7cBOU=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=auhGW2wKKdNn7Ufr/VnIl7KN0pbd0p037VothtdDeoQnGXsewMZ7girGgGU0wkrcM Xsm7VnpFXY+7TkwmnuNv4MBN9WWFE/2d6+cr+3vXJWGN1BJulObFWKlrxcoIYd8hid nttpF02vjJXZGJ1r2S9pPlfjfQboeLHhdMQtfiUMVxwH67BKVAHJx4o1nUYE5ro9yP Q30y3GZ02QFXRseI3IhQVDMZc7Lu4l1y4Y/NhM8ckjEbRu1vvXS3T1kEhMZlbOew8l soyVOjOAYfUYAqCY0i5NmlghDITqVh9KPN5HEXObbTJ55dIqDy72E8rqg3QcAn5hgW +rSvt7zBPSHiQ== Date: Wed, 14 Jan 2026 19:48:44 -0700 (MST) From: Paul Walmsley To: Charlie Jenkins cc: Paul Walmsley , Palmer Dabbelt , Alexandre Ghiti , Anup Patel , Atish Patra , Samuel Holland , =?ISO-8859-15?Q?Bj=F6rn_T=F6pel?= , Luke Nelson , Xi Wang , Eric Biggers , Conor Dooley , linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, Charlie Jenkins Subject: Re: [PATCH RFC 01/10] riscv: Standardize extension capitilization In-Reply-To: <20251210-profiles-v1-1-315a6ff2ca5a@gmail.com> Message-ID: <338a10b7-c617-93ff-ba0b-e9a1ddd8fab2@kernel.org> References: <20251210-profiles-v1-0-315a6ff2ca5a@gmail.com> <20251210-profiles-v1-1-315a6ff2ca5a@gmail.com> 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 On Wed, 10 Dec 2025, Charlie Jenkins wrote: > The base extensions are often lowercase and were written as lowercase in > hwcap, but other references to these extensions in the kernel are > uppercase. Standardize the case to make it easier to handle macro > expansion. > > Signed-off-by: Charlie Jenkins I like it. This helps align arch/riscv to CodingStyle. - Paul