From nobody Tue Dec 16 07:33:17 2025 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 70F5B2882C5 for ; Sun, 14 Dec 2025 20:27:43 +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=1765744064; cv=none; b=DUWG5zE0zNGBJ6cFEfRVDgOTNCphU2rPMlRVLPOIHS2CKmzbyjQYaEo+NhCQpzc/2iaIW2dA2bTg4qje2F1npGPWYC4xPJJf4XfWS2PmwHEeKe5vEeGALrIHc7amIMJ1PiRIo/e85EBDltpOhC+3QhR2UzI2k2tOT55Ctcgja2M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765744064; c=relaxed/simple; bh=o7mYAYs6Ziu65Jdu1XKgGzo1FssH/D2bXMFNHxVQWqk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=FnUE+NXjXFX/OfrTdp3+/0XpiI8zRkxOCsnf3tJG3qBb2Jf7RyclziIIEZaMwTTYWO7VkmJZ6QAwXJGNbNCkxU5e0cxVHGk5O9rGau7uuKy7lxXG8U2pD9kpVpaxH+FtKN6UGb3F8cDGNU7Bn00CgjjuAQjxLtD+mkCQQYPKsiY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=3p0h6UcY; 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=none 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="3p0h6UcY" 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=X3sz6Yj767NA66IiHsb4m1ioglLc6zTCEPOb3iQVH48=; b=3p0h6UcYuEAaiLn94FaRwrFQax ZYlXuwPHrTh430fBGNg2TBemWv6CwZI/KAXmlrFd728GOYXMWDbmmqP5Yw8EljCq4RsHs6LCLG8ls NXlMxA0mRKYn82eUKVI2nlqt+EJtyzwOZUroecPQcZwmzmrr57zMzHk1RRTu8Kz4wvFr+zSyNgzDq L7vjhEp3iisYPz37hR0Wi8VPFuzXVKDbkhP8cVuTp6WHsFErZXf8Qsy+JpdSkRijq+0cdldfNQAA4 5x9SsjMwQuCEHeobQfc2yXnPsznvSFxRidtHai7vHJfjQtLYsWjLzArOarrKunnVTqJQTlZAf13Un 5CWirAYA==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vUsgw-00000002ia9-0SyK; Sun, 14 Dec 2025 20:27:42 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Arnd Bergmann , Greg Kroah-Hartman Subject: [PATCH] eeprom_93cx6: fix struct member kernel-doc Date: Sun, 14 Dec 2025 12:27:39 -0800 Message-ID: <20251214202739.2216904-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.52.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" Remove the function parameter parts of the struct member descriptions to prevent kernel-doc warnings: Warning: include/linux/eeprom_93cx6.h:64 struct member 'register_read' not described in 'eeprom_93cx6' Warning: ../include/linux/eeprom_93cx6.h:64 struct member 'register_write' not described in 'eeprom_93cx6' Signed-off-by: Randy Dunlap --- Cc: Arnd Bergmann Cc: Greg Kroah-Hartman --- include/linux/eeprom_93cx6.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- linux-next-20251201.orig/include/linux/eeprom_93cx6.h +++ linux-next-20251201/include/linux/eeprom_93cx6.h @@ -31,10 +31,10 @@ * struct eeprom_93cx6 - control structure for setting the commands * for reading the eeprom data. * @data: private pointer for the driver. - * @register_read(struct eeprom_93cx6 *eeprom): handler to - * read the eeprom register, this function should set all reg_* fields. - * @register_write(struct eeprom_93cx6 *eeprom): handler to - * write to the eeprom register by using all reg_* fields. + * @register_read: handler to read the eeprom register; + * this function should set all reg_* fields. + * @register_write: handler to write to the eeprom register by using + * all reg_* fields. * @width: eeprom width, should be one of the PCI_EEPROM_WIDTH_* defines * @quirks: eeprom or controller quirks * @drive_data: Set if we're driving the data line.