From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from sea.source.kernel.org (sea.source.kernel.org [172.234.252.31]) (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 D6E25503BEB for ; Sat, 5 Sep 2026 19:04:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=172.234.252.31 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788635061; cv=none; b=twRsusaZnWGk8c6/h8XrkkrgZqMSFaGzfe7Cta8DJR3t81Ew0lJvCRET0u+8qoe/nqF15v6MypP2eO2zLEritRdJNDKIQZFhMwVzZpogyiRlRQfSxLw50bsLqnaJ6xFsHaxoje8Otzpna9/R0DUyIibgD6MtOah/TKZm42Er0uk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788635061; c=relaxed/simple; bh=ZO7QoC55JS7YlrPj7n0tc+0W47P37ccqMQAZ8EeLG2I=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=uCFNd6UvCYKnHp0ZpEF8DspGHSqgN9QG0UpAGNqtTbnlFkSj0d5dt/xShiQS1dpQme/NP2bmeISTz2H2Zp51P3ulHd36ywYVGw+eZcb+LN4kxJyY7VgIzpdbex41Jb6cgt3O8IFliVOITIGNBWXTcDGf5Z6mDtG1ll8pTHlxmGE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=kernel.org; spf=pass smtp.mailfrom=kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bGZK3QdN; arc=none smtp.client-ip=172.234.252.31 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kernel.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bGZK3QdN" Received: from smtp.kernel.org (quasi.space.kernel.org [100.103.45.18]) by sea.source.kernel.org (Postfix) with ESMTP id EEBBD43ECD; Sat, 5 Sep 2026 19:04:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 348EF1F00A3A; Sat, 5 Sep 2026 19:04:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1788635058; bh=ZO7QoC55JS7YlrPj7n0tc+0W47P37ccqMQAZ8EeLG2I=; h=From:To:Cc:Subject:In-Reply-To:References:Date; b=bGZK3QdNjedBzOdUANccbLKsTmyU0rDMg1V3AvzOw4poWea8kGxs2E+vX3rkzrgiB KnbVlVWeluoqRYYYipEvWzTQ29XK4z4R5pvKtfXP1alBXKG0kP5dd3LMoM9pn9a3GT gRR3RPmUBW140oaCy42R7rFAk7Hd5h2f0y3vABFeHZUxePUbbJYSxN3IYNv5ke/cww IFXCkDblqcA9ekeWxs148h1D9nRiYtEqj5ZZHC0yfTKPQT/uYgXI+ue0xNtb7Du9T9 WDZ6pGyF6xS3tBM6jcVIEvfIdfyNPgwORLbTMX/l0h9aTWoKPPY8wbvoj+0NHJP8AH 7Kf+vcht5wgHw== From: Thomas Gleixner To: Karl Mehltretter , Jonathan Corbet Cc: Karl Mehltretter , Geert Uytterhoeven , linux-m68k@lists.linux-m68k.org, Dmitry Torokhov , linux-input@vger.kernel.org, linux-doc@vger.kernel.org, Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, Steve Wahl , Dimitri Sivanich , Tony Luck , linux-edac@vger.kernel.org, Krzysztof Kozlowski , Arnd Bergmann , linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Tony Lindgren , Kevin Hilman , linux-omap@vger.kernel.org, Dominik Brodowski , Damien Le Moal , Niklas Cassel , linux-ide@vger.kernel.org Subject: Re: [PATCH 4/9] docs: kernel-parameters: Drop the enable_timer_pin_1 entry In-Reply-To: <20260905070347.25902-5-kmehltretter@gmail.com> References: <20260905070347.25902-1-kmehltretter@gmail.com> <20260905070347.25902-5-kmehltretter@gmail.com> Date: Sat, 05 Sep 2026 21:04:15 +0200 Message-ID: <87ik4j5xlc.ffs@fw13> Precedence: bulk X-Mailing-List: linux-m68k@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain On Sat, Sep 05 2026 at 09:03, Karl Mehltretter wrote: > enable_timer_pin_1 lost its early_param() in commit efa2559f6516 ("x86: > order variables in io_apic_xx.c"); nothing parses it any more. > > Drop the entry. > > Found by cross-checking every documented name against the __setup(), > early_param() and core_param() registrations in the tree. > > Fixes: efa2559f6516 ("x86: order variables in io_apic_xx.c") > Assisted-by: LLM > Signed-off-by: Karl Mehltretter Acked-by: Thomas Gleixner