From nobody Sat Jul 25 01:37:25 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 B1EF0175A7C for ; Tue, 21 Jul 2026 02:00:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784599231; cv=none; b=BNZng4xUrZmtDUisadhz9LTNnULhVnDa3rU5Oq4oDizUXsOq2KYTIg6Sewf0JS6FzNaNzitDgCHMQG8H6CsQfgMIHV++QFxkgeFe4r4qwMpgRo6dV2dfc4seDd+6znM8CP8UW+Wg+3s2SGYyMkAj/xR5/mho7HrchG1YWuHIUaE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784599231; c=relaxed/simple; bh=c695Wy/AZnzlR28hpZw6/E3Yh5F10zJCekhoIYHg/fA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=oNS0ihGhebYyT/sbi4SVpcKn/JXXN7H/mVJDQHg1Z2fvjOpnPmuozb+2NR6TW1Wn3PBsemgDBSov3f/1no2Q7p85Ca/qkHbAn+sO1HmcqTpxs8f8npN7wUIqiODQ7EkQZULH6QUckUgLXPeYDrsg7xklRjwwIYk2ruwV0cW/urA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=E7M/4e91; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="E7M/4e91" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=4h2tr58k/0CT3Kjo0JFJbPHJAvlzGyvoaanFeNgkvJQ=; b=E7M/4e91jifsMpYrMeP0yFCacn pId0VZd3mEUKRSoA5LwMiiP6bxIJtNBNAQH30hKWZrBy4CfIky/lPCk2831Thp6bzRC++jgcPfEX9 eQ4GSAxMmT++4487AdQ0+47T+6Y2uvllz4noTXTCocaKXULyr/cYnM8WaQGHKsa/70KsOrRyZ6Bz5 SbcGSKlReLZ+H7p3YJOYLGZEZS7andnaKJkSLQ5LX3DOnKAUtlYx1D7e9lGgSq5k+AKGmA8npXugn JH1Yg5RDbTzCVnv7gIVX5H34v1RqegW0vt7Bsvg3FQV6GyCqjYNqFTeZwoye4UEAcvSBNzFAHm6Zh lGBrcCaw==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wlzmS-00000008DMh-3VDZ; Tue, 21 Jul 2026 02:00:24 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Chris Zankel , Max Filippov , Will Deacon , Peter Zijlstra , Boqun Feng , Mark Rutland , Gary Guo Subject: [PATCH v2] xtensa: atomics: drop kernel-doc comments Date: Mon, 20 Jul 2026 19:00:23 -0700 Message-ID: <20260721020023.3463952-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The arch-specific kernel-doc comments were supposed to be deleted in commit: ef558b4b7bbb ("locking/atomic: treewide: delete arch_atomic_*() kerneldoc"), [1] but these were missed, so delete them now. Warning: ./arch/xtensa/include/asm/atomic.h:45 expecting prototype for atomic_read(). Prototype was for arch_atomic_read() instead Warning: ./arch/xtensa/include/asm/atomic.h:54 expecting prototype for atomic_set(). Prototype was for arch_atomic_set() instead Link [1]: https://lore.kernel.org/all/al3q54jxOKZujYue@J2N7QTR9R3.cambridge.arm.com/ Fixes: ef558b4b7bbb ("locking/atomic: treewide: delete arch_atomic_*() kern= eldoc") Signed-off-by: Randy Dunlap Acked-by: Mark Rutland --- v2: drop the arch-specific kernel-doc comments (Mark R.) Cc: Chris Zankel Cc: Max Filippov Cc: Will Deacon Cc: Peter Zijlstra Cc: Boqun Feng Cc: Mark Rutland Cc: Gary Guo arch/xtensa/include/asm/atomic.h | 13 ------------- 1 file changed, 13 deletions(-) --- linux-next-20260720.orig/arch/xtensa/include/asm/atomic.h +++ linux-next-20260720/arch/xtensa/include/asm/atomic.h @@ -37,21 +37,8 @@ * where no register reference will cause an overflow. */ =20 -/** - * atomic_read - read atomic variable - * @v: pointer of type atomic_t - * - * Atomically reads the value of @v. - */ #define arch_atomic_read(v) READ_ONCE((v)->counter) =20 -/** - * atomic_set - set atomic variable - * @v: pointer of type atomic_t - * @i: required value - * - * Atomically sets the value of @v to @i. - */ #define arch_atomic_set(v,i) WRITE_ONCE((v)->counter, (i)) =20 #if XCHAL_HAVE_EXCLUSIVE