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 8E37A3112BC for ; Mon, 27 Apr 2026 11:44:33 +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=1777290273; cv=none; b=p8CdMmVxwBqisDtFMkn1QNa0BNKRe1JKlZOEe2FMgBU1eiQUFlGg3H6gcHjKmyPyu48KyDyxpowYSm0xkVG+KmAkxrI2AXXm0QPXaRy6g7KweZ+odenkZL+hfs7EiQtpWlWGAh7ZAW9McJJ5xWFZaq2T/CBJbQjCtJwOEnKF0Nk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777290273; c=relaxed/simple; bh=mQ5meayxSck8cnImfOEfoKmykkP2Z2C4RfLumlw0n+g=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=lgKtzhAf1TfSGGvVuZcoUo/MCeqe0B+iV1m9Td2vUZGvapqXDg7oUZEpq2FWKiGRYhvstXR7bIvqMgWEsYM01o3GpLtBssWVW0wuXAQHcorP6eV2l5KKeoiR5bzuChDRQsgPdnaepnOhGLNiON1w4QXjBqA3fM9XUQvXms4PcIs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JlAQqF47; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="JlAQqF47" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EDF53C19425; Mon, 27 Apr 2026 11:44:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777290273; bh=mQ5meayxSck8cnImfOEfoKmykkP2Z2C4RfLumlw0n+g=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JlAQqF47QNHnnz6u1MZ74vXVsxEPJQB3sDridhp8kbVW/Ce/tNziBBEsR37Em05S1 7QX+03EbMiPQSPKQ3+BNrOwo/mfLLLAJgghYLIlk81LGY52CTs3U/LugeXhxAtsA7R G/J5ZYhd4XgZNRDSjU2+iQ5vPbLVf6YB3/DBiqvc= Date: Mon, 27 Apr 2026 05:43:57 -0600 From: Greg KH To: dragonship20@gmail.com Cc: arnd@arndb.de, linux-kernel@vger.kernel.org Subject: Re: [PATCH] lp: fix switch-case indentation Message-ID: <2026042702-cling-hardening-12e8@gregkh> References: <20260426170147.118761-1-dragonship20@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=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260426170147.118761-1-dragonship20@gmail.com> On Sun, Apr 26, 2026 at 07:01:47PM +0200, dragonship20@gmail.com wrote: > From: Antoni WardziƄski > > Align case labels with switch statement > according to Linux kernel coding style. > > No functional change. That's nice, but for old code like this, there is no need to run checkpatch on it. If you wish to do checkpatch cleanups, please stick to drivers/staging/ or other subsystems that allow this. Otherwise it's a constant churn on the codebase for not a good reason (i.e. only do it when you are actually making a fix/feature). thanks, greg k-h