From nobody Thu Apr 9 09:10:50 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 7B2F0220F2D for ; Mon, 9 Mar 2026 21:42:25 +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=1773092547; cv=none; b=PBp7E1wTKzwaAVOVl6nD5yiqjXbLoT57TX4aG6sCaAzJHM8ratIf92PZq8swYrSPKsCmdV8A8wfBsoF5EoH8ymrvoS8sT6LNrw6OmNvwLPg/Gn0EzBR3FzmET/vhsJo0tL6YyGIeM2nLc137p4Vju8pLaxqohLeoBO5R9kw5f+4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773092547; c=relaxed/simple; bh=yz8ALYq6uZywwYBtwaKjBgBma2JjlyLFpQFIW4q70FU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ldJ1L2IJ+fYsOp2kK2AGtTXUKDMOilag/vo3CHmQAYD/cT4tRcHX6phKnLnm5Ih+Tg62JRk/pYWkVIdOvae4d1xRy3LoOCT10bES30rVrr7vfwFAGEoI97hR0pu3/ZqNN1rZWe37dd/8+kUens5EdyE3b7VqTDjt2cMLV/6o1ho= 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=exoXIQQ1; 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="exoXIQQ1" 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:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=Dx9NItXS06ojciDheRxoSXNAN8EWhAY2/3ZPrKdQLLI=; b=exoXIQQ1dswQEAQSsl1ZcpOwz/ AuS6aCXX6/jXQcQ4S2HQ70/SenAGMUlmvSQbH9kBluDKkr/BDfeVc0Pjb4hieLxLBIVQKYKJppzZg Nme1LKQChO/Ior94WlvwI/847AJ2qof/hdP9UWD0AQrcwQXiEtC8WPq0f3CREkcnCHgrNKF9qLUaS r4dJezDZATYYitnnfwtCEw9WLpp8Cit27jaXJRduxs5PIKlFvKkw9ZjnWC0R94Eu9kiz1QX2ZaUNM Rf5sUMldUvw1XrrpHMm0snKhnbT4ddelLCJCfyeWrx23RuAqZ2Ghmsg/alndO4m+1FiZeK2bc7iYU sRROs4lA==; 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 1vziMq-00000008Byh-31Is; Mon, 09 Mar 2026 21:42:24 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Thomas Richard , Michael Brunner , Lee Jones Subject: [PATCH 1/4 v2] mfd: Congatec: fix kernel-doc struct member names Date: Mon, 9 Mar 2026 14:42:20 -0700 Message-ID: <20260309214223.749088-2-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260309214223.749088-1-rdunlap@infradead.org> References: <20260309214223.749088-1-rdunlap@infradead.org> 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" Correct the struct member names to avoid kernel-doc warnings: Warning: include/linux/mfd/cgbc.h:38 struct member 'version' not described in 'cgbc_device_data' Warning: ../include/linux/mfd/cgbc.h:38 struct member 'lock' not described in 'cgbc_device_data' Signed-off-by: Randy Dunlap --- Cc: Thomas Richard Cc: Lee Jones include/linux/mfd/cgbc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20260220.orig/include/linux/mfd/cgbc.h +++ linux-next-20260220/include/linux/mfd/cgbc.h @@ -26,8 +26,8 @@ struct cgbc_version { * @io_cmd: Pointer to the command IO memory * @session: Session id returned by the Board Controller * @dev: Pointer to kernel device structure - * @cgbc_version: Board Controller version structure - * @mutex: Board Controller mutex + * @version: Board Controller version structure + * @lock: Board Controller mutex */ struct cgbc_device_data { void __iomem *io_session; From nobody Thu Apr 9 09:10:50 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 7B36F2F2917 for ; Mon, 9 Mar 2026 21:42:25 +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=1773092548; cv=none; b=C0ID+xcM/b3s7wzt/hcF7UAWbw9c2GbiAk+GKTCG33C0BOYwaBqASPnJomO5J8jQihRiA4wYcOw3Sh8bJaBHjplSOBggwkRZxaJSwLquLAM/0+8Fz86zAtM8VFtI72awpFJ3I1ZMLQzRwsh1xZoYPTTHVIV3P0uYsRR8hTuuFGQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773092548; c=relaxed/simple; bh=ihXi6Q5lMe4doyKOAdDb/m6zjnUMkhgGda7605Cqdnw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dRUutIJuRUhrcF4hexdrAT4g0gZaSOqxcwQbG4h36Bm8GA9Biq/4zYRVvjrI1So/qMCPNN5ht+mcll+tfFIqr2ynOAqMr6Vzb3MBEUD1tZBpIlN3CYCCKf2kGiPC6P8V0/LKjvKRtiq2Dqwl3ZsFSx/FntLCr4v6wHFZVaJoQig= 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=cNkKL8vc; 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="cNkKL8vc" 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:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=EpfPj30kPa6YoJC9OskDYFcZS7cAXGMrQXM/E12uBQs=; b=cNkKL8vcFR+N2TmD0x32UADuiT 3t5WQfkBsg4N+rx69sloJ6BC4Yb4GTfPfbPBvBvyIVJBmga8LHhNn5bbVY6lzFna3vorHteWOee1Q BIK9JjWZSrtTdVx4y5EKcPUkn1Q+QQHBnDTPEDCDJmlrwqoChbZfxR2MlyR4T7onc9Sma7KFPcPXX ol2I2tHRoFkZhI/IxE2ztOfudD5mqlBoX+YGGejJl5Aj2LPR0l00w7lNLCfgyD4/3dbCavM9HCI/e /DWBbytVQuvroiFhTXNy4czAcI/ygDPB50wH4tKet7DhXU1wEDyEx68gc86agXfPN7SaMu4+7fU+f Vn+x3gFw==; 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 1vziMq-00000008Byh-3u4O; Mon, 09 Mar 2026 21:42:24 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Thomas Richard , Michael Brunner , Lee Jones Subject: [PATCH 2/4 v2] mfd: Kontron PLD: fix kernel-doc struct member names Date: Mon, 9 Mar 2026 14:42:21 -0700 Message-ID: <20260309214223.749088-3-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260309214223.749088-1-rdunlap@infradead.org> References: <20260309214223.749088-1-rdunlap@infradead.org> 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" Correct the struct member names to avoid kernel-doc warnings: Warning: include/linux/mfd/kempld.h:114 struct member 'gpio_base' not described in 'kempld_platform_data' Warning: include/linux/mfd/kempld.h:114 struct member 'get_hardware_mutex' not described in 'kempld_platform_data' Warning: include/linux/mfd/kempld.h:114 struct member 'release_hardware_mutex' not described in 'kempld_platform_data' Signed-off-by: Randy Dunlap --- Cc: Michael Brunner Cc: Lee Jones include/linux/mfd/kempld.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- linux-next-20260220.orig/include/linux/mfd/kempld.h +++ linux-next-20260220/include/linux/mfd/kempld.h @@ -97,10 +97,10 @@ struct kempld_device_data { /** * struct kempld_platform_data - PLD hardware configuration structure * @pld_clock: PLD clock frequency - * @gpio_base GPIO base pin number + * @gpio_base: GPIO base pin number * @ioresource: IO addresses of the PLD - * @get_mutex: PLD specific get_mutex callback - * @release_mutex: PLD specific release_mutex callback + * @get_hardware_mutex: PLD specific get_mutex callback + * @release_hardware_mutex: PLD specific release_mutex callback * @get_info: PLD specific get_info callback * @register_cells: PLD specific register_cells callback */ From nobody Thu Apr 9 09:10:50 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 885AD357A3F for ; Mon, 9 Mar 2026 21:42:25 +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=1773092547; cv=none; b=CZDeh1vG/h098mpxFMkKdw8ACgbPjdbRQbMAL7sHPJToTm2D4TKRlh22ZS0UfFH48D89PpFiCoyxNkcvq0KP3ll/UU2DjYCSPhei0vtRN++Ack1eW9xeh7FpLMllwNlrH3mNrlzPiJ1K7KxPOM9qJw62Cirm1TH4zcnCazqPyeQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773092547; c=relaxed/simple; bh=3AHh5jSkyvoUufW7Wvwx2+Yr+Q0+BNQAX0KG8Bx79gQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Gv/ckB0RCzLIf/zYST9lQX0nH6130z8n8RzVaGLsS5chkvsb+i8OAnYWDm04LIGy/qTba0/hANz5bHDIqjaAp0kwRxy8MORMMys2ObjWT3vVJ6/6b+JPC+to3YZlMqBZpIuUKSx1iLdZKUcPwIXVlxdB5T5TStozI9VQsn9PjbY= 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=jwOuj+yW; 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="jwOuj+yW" 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:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=VmoUoI4UMEi6B69Z3cjMOd2ntJqNCEDjfQHi4PG8Xf0=; b=jwOuj+yW52Ny9mpVqkXRxmIySZ +3qap1e2eHxUlVHi3zh/62Pegos8qIxdYsWJ8Dw1L5BofC0Fyi1/g+laqfev90e0AjGi+ApEOTIrv wgHhSBIpLBT4IymtEy959yimTm4vc7YuCSA8y1jBQ1juJ1i4KbU0iP5vE4LDqrBwq9i/cVY2E7aqN 5gjbA2ceGOGoy9mQcfC2mKAA4aHAlunng8H9Cwwy3SSYk7X3j8FE/3c9a4C2dDtKdF5EWFiTVQ36h FaZ16cYX7MlyhVAHd8XZOQcPEWPfgu1znn4otTlN/5ig9MNljz8grg0iMqyeh0IYdj8I00VcZG7QW mKxJE9Qw==; 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 1vziMr-00000008Byh-0flY; Mon, 09 Mar 2026 21:42:25 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Thomas Richard , Michael Brunner , Lee Jones Subject: [PATCH 3/4 v2] mfd: rsmu: remove a empty kernel-doc line Date: Mon, 9 Mar 2026 14:42:22 -0700 Message-ID: <20260309214223.749088-4-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260309214223.749088-1-rdunlap@infradead.org> References: <20260309214223.749088-1-rdunlap@infradead.org> 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" kernel-doc format expects a prototype on the line that immediately follows the "/**" line, so drop this empty line. Warning: include/linux/mfd/rsmu.h:21 Cannot find identifier on line: * Signed-off-by: Randy Dunlap --- Cc: Lee Jones include/linux/mfd/rsmu.h | 1 - 1 file changed, 1 deletion(-) --- linux-next-20260220.orig/include/linux/mfd/rsmu.h +++ linux-next-20260220/include/linux/mfd/rsmu.h @@ -19,7 +19,6 @@ enum rsmu_type { }; =20 /** - * * struct rsmu_ddata - device data structure for sub devices. * * @dev: i2c/spi device. From nobody Thu Apr 9 09:10:50 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 CFC6136B06F for ; Mon, 9 Mar 2026 21:42:25 +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=1773092547; cv=none; b=icy7AxH1YGGeXoz8Tv7+Ufl/4GJ2+JXc99xzO9Dz/2uljZKXSBTQfvCMEZSP/yX5QA1SgArQYCpKmax2wl6OMF7rgnanWvZlqTnWhE85gF7pKQh7aTzJgzzlzUICpn9+V180Yv/SnVB4zsK4U9pWt8+M94v0zwt+9oKDPKAtB3c= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773092547; c=relaxed/simple; bh=NQPYrCsWXmRtB7pRhePI1C412DwmzQ+ZuHBtI2xLwwg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FLWlt/l/3n/N7f/UQebkOfU9nlxqvPQKPml7D7+ocgsjQIprwcbVE7L4B+NjYJwTwmPX1/Nx4hsmfYvxyqRkMj0TiteqDhI3bpJrHhFfTWLnnZIqoie/TWzk0a0UvDJ1fHQoICc5EaYZSDvyyDitDy3yVIXHazQzTC+nKWLkEww= 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=TGmm2l3y; 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="TGmm2l3y" 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:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=WZ2f1scZ/38/1so3B1XD5hbRt46OECdSQTtpWOx9Vx4=; b=TGmm2l3yyapM2169KvzWyzG+pK pPHfyfKsCcZvFA11DQ+NoHe5f3XONtxye5bohMyXnMyk5Ixnlt09zDfEweJxnd0ot2VgpM82IcjbA e3sEdeNUmoLRD2lAoME8yrbAz7XdUyuMxeTDqqC3ZsxdPQ9V86+A1eCPm36rrZJfFqRdubUQw8lOi iQrBrZuEKw/O7IEpqBW/Tf+WAXZYha0nG0gsXcOwbi/UpRsQ1LOBwDfwqkuzijv0LmcnKgEf8kaX3 BrdTUJcBrWUCh9ipjQpOqxqrd6iUAZEGH+slNt6t9FZGhQczYz776dl+7Q8557K1EpiyAiYNDIcga s4Gt67ig==; 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 1vziMr-00000008Byh-1bvH; Mon, 09 Mar 2026 21:42:25 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Thomas Richard , Michael Brunner , Lee Jones Subject: [PATCH 4/4 v2] mfd: si476x: fix kernel-doc warnings Date: Mon, 9 Mar 2026 14:42:23 -0700 Message-ID: <20260309214223.749088-5-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260309214223.749088-1-rdunlap@infradead.org> References: <20260309214223.749088-1-rdunlap@infradead.org> 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" Add kernel-doc entries for missing fields or correct some typos in names to eliminate kernel-doc warnings: Warning: include/linux/mfd/si476x-core.h:156 struct member 'regmap' not described in 'si476x_core' Warning: include/linux/mfd/si476x-core.h:156 struct member 'power_state' not described in 'si476x_core' Warning: include/linux/mfd/si476x-core.h:156 struct member 'supplies' not described in 'si476x_core' Warning: include/linux/mfd/si476x-core.h:156 struct member 'is_alive' not described in 'si476x_core' Warning: include/linux/mfd/si476x-core.h:156 struct member 'rds_fifo_depth' not described in 'si476x_core' Warning: include/linux/mfd/si476x-core.h:170 function parameter 'core' not described in 'si476x_core_lock' Warning: include/linux/mfd/si476x-core.h:179 function parameter 'core' not described in 'si476x_core_unlock' Warning: include/linux/mfd/si476x-core.h:259 struct member 'firmware' not described in 'si476x_func_info' Warning: include/linux/mfd/si476x-core.h:335 struct member 'rds' not described in 'si476x_rds_status_report' I don't know what the 'ble' field is so I didn't add a kernel-doc comment for it: Warning: include/linux/mfd/si476x-core.h:335 struct member 'ble' not described in 'si476x_rds_status_report' Signed-off-by: Randy Dunlap --- Cc: Lee Jones include/linux/mfd/si476x-core.h | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) --- linux-next-20260220.orig/include/linux/mfd/si476x-core.h +++ linux-next-20260220/include/linux/mfd/si476x-core.h @@ -77,6 +77,7 @@ enum si476x_power_state { * underlying "core" device which all the MFD cell-devices use. * * @client: Actual I2C client used to transfer commands to the chip. + * @regmap: Regmap for accessing the device registers * @chip_id: Last digit of the chip model(E.g. "1" for SI4761) * @cells: MFD cell devices created by this driver. * @cmd_lock: Mutex used to serialize all the requests to the core @@ -100,16 +101,18 @@ enum si476x_power_state { * @stc: Similar to @cts, but for the STC bit of the status value. * @power_up_parameters: Parameters used as argument for POWER_UP * command when the device is started. - * @state: Current power state of the device. - * @supplues: Structure containing handles to all power supplies used + * @power_state: Current power state of the device. + * @supplies: Structure containing handles to all power supplies used * by the device (NULL ones are ignored). * @gpio_reset: GPIO pin connectet to the RSTB pin of the chip. * @pinmux: Chip's configurable pins configuration. * @diversity_mode: Chips role when functioning in diversity mode. + * @is_alive: Chip is initialized and active. * @status_monitor: Polling worker used in polling use case scenarion * (when IRQ is not avalible). * @revision: Chip's running firmware revision number(Used for correct * command set support). + * @rds_fifo_depth: RDS FIFO size: 20 for IRQ mode or 5 for polling mode. */ =20 struct si476x_core { @@ -166,6 +169,7 @@ static inline struct si476x_core *i2c_mf /** * si476x_core_lock() - lock the core device to get an exclusive access * to it. + * @core: Core device structure */ static inline void si476x_core_lock(struct si476x_core *core) { @@ -175,6 +179,7 @@ static inline void si476x_core_lock(stru /** * si476x_core_unlock() - unlock the core device to relinquish an * exclusive access to it. + * @core: Core device structure */ static inline void si476x_core_unlock(struct si476x_core *core) { @@ -246,9 +251,10 @@ static inline int si476x_to_v4l2(struct * struct si476x_func_info - structure containing result of the * FUNC_INFO command. * + * @firmware: Firmware version numbers. * @firmware.major: Firmware major number. * @firmware.minor[...]: Firmware minor numbers. - * @patch_id: + * @patch_id: Firmware patch level. * @func: Mode tuner is working in. */ struct si476x_func_info { @@ -318,8 +324,9 @@ enum si476x_smoothmetrics { * @tp: Current channel's TP flag. * @pty: Current channel's PTY code. * @pi: Current channel's PI code. - * @rdsfifoused: Number of blocks remaining in the RDS FIFO (0 if - * empty). + * @rdsfifoused: Number of blocks remaining in the RDS FIFO (0 if empty). + * @ble: + * @rds: RDS data descriptor */ struct si476x_rds_status_report { bool rdstpptyint, rdspiint, rdssyncint, rdsfifoint;