From nobody Sat Jul 25 03:46:55 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 3E7F71386C9 for ; Sat, 18 Jul 2026 23:08:48 +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=1784416131; cv=none; b=L/C7F+ueXcVhjRu4TXw+yjml7XuzKroIVf4WQZ1bgJlN9p/L8SKzA7ldO6QnFya5LhDubu0tySNRClSBLgWB0srvmZp3g8t8/8rmsf+NQV2eDzIBpTxrZ1j1HwKj0r3pZcFFa2R6HRdpiCUZN5rmRaOLqH+nQ+ZMcuF7ixOHBQM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784416131; c=relaxed/simple; bh=uqaUF/mQ4FF88mJEWZ+B9u9keZMTxNZ+MiQDm8dWOJ8=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Cvuqh1O5KyKJkBzQSK84m1JZ6rjte7AoE1bgSWBLuigf7udn8ELq2e1QUGqprCt24+gFlK++g4FZQMQBdeTzb7GrApCT1W4rt1PnwjkS7ymroG+aZv1mbgY2HnvFQoTX3BwM2SdRAlP94OZfwbgYXPtokA4TZEhFqWCxZrW4kOk= 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=eT0b6LvU; 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="eT0b6LvU" 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=2Oa2TU51eYHJ1bN6x009dtetMSkyv5c/IXny1pIuhMk=; b=eT0b6LvU5xHhq7xljpXBU9JDRx tZpD/ZJwX9Li3zddgGXifFkjH9NAEsWadpMrW0yHm0ZuvVOwIo3VkdvxAA5FGXR9ok+GXs+75TRvO PwWc0pgUqWOtd0+ula3oIvRXhw4KsF9/q63KUqiaaSFQehLq5P407LDObqKOKbsNPVJPlyMH+ty8N bn0XrsOhV21o4GuhX7TJ3gqzlw4DFsgLUrainHLfedQR8xyGpXN0yNln3U7kFOr7XhmsmWfpeMZpe 6ruRJs++a6ry6ZQxcfHJq8uv9l4YRmosF8yQQ2KqhZcllOcEd6WqwehEVzwba0dIfSwKB1hsH2XWg 8cA/YffQ==; 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 1wlE9H-00000004a9w-0n42; Sat, 18 Jul 2026 23:08:47 +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] xtensa: atomics: fix kernel-doc warnings Date: Sat, 18 Jul 2026 16:08:46 -0700 Message-ID: <20260718230846.2066376-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" Use the correct function name in kernel-doc comments to avoid kernel-doc warnings: 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 Signed-off-by: Randy Dunlap --- 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20260717.orig/arch/xtensa/include/asm/atomic.h +++ linux-next-20260717/arch/xtensa/include/asm/atomic.h @@ -38,7 +38,7 @@ */ =20 /** - * atomic_read - read atomic variable + * arch_atomic_read - read atomic variable * @v: pointer of type atomic_t * * Atomically reads the value of @v. @@ -46,7 +46,7 @@ #define arch_atomic_read(v) READ_ONCE((v)->counter) =20 /** - * atomic_set - set atomic variable + * arch_atomic_set - set atomic variable * @v: pointer of type atomic_t * @i: required value *