From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 E104633372B; Fri, 9 Jan 2026 12:30:28 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767961829; cv=none; b=eI/v72GSHkDOpfGOROXQqjX3Kxh9ABPgtDiJXBW2VtWGEfvVnuCe1nb+WmZeXJLKo2K7jrolv/7lSKsyu0QrQxdeOeUD+2bdyvXLsFwyaFxvE9mNMM/FAEAfPHeDSedz3KgJ2DuCU8vPR2r58p3KPZHKV5qSd8d/gMDI1/LN19w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767961829; c=relaxed/simple; bh=x1Yhl0MUjeGJBYbHNu/Hl/vadyEFyrIQPapkoy1yhIc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FA1S1oizCU80JtuHVAHjqd4O4czSGacy6kkQ3H8q0JaFyAU1AEjpUpLfmCbLUJSWKac4CWSBmIrcr6zOy9w+ttZwIuonkTSvizl7biLMwCGUwlLPydrYWNaBH5ePHPeWDGJj0zmI5aofALIml0qSML1fugukKmTfD4ty9sbpKNk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=t4HPZYPB; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="t4HPZYPB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4146AC4CEF1; Fri, 9 Jan 2026 12:30:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767961828; bh=x1Yhl0MUjeGJBYbHNu/Hl/vadyEFyrIQPapkoy1yhIc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=t4HPZYPBXXmwcXs4p0ECRsGdYzrUFH3h+3ZXIZxRPdWBJQMRAT88LuhjjH5xQOQOX IFCWleJ4oEpHXV07HnTJp1Wk2z3vWb5ItUgZ7aIme4aKAiAXXD7JgVMxh7daDzEOAX qBRzFd30dfdy6Mr0DtyPkaf4TqosxZfdUrU845z0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , "Daniel Thompson (RISCstar)" , Lee Jones , Sasha Levin Subject: [PATCH 6.1 151/634] backlight: lp855x: Fix lp855x.h kernel-doc warnings Date: Fri, 9 Jan 2026 12:37:09 +0100 Message-ID: <20260109112123.134927112@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260109112117.407257400@linuxfoundation.org> References: <20260109112117.407257400@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit 2d45db63260c6ae3cf007361e04a1c41bd265084 ] Add a missing struct short description and a missing leading " *" to lp855x.h to avoid kernel-doc warnings: Warning: include/linux/platform_data/lp855x.h:126 missing initial short description on line: * struct lp855x_platform_data Warning: include/linux/platform_data/lp855x.h:131 bad line: Only valid when mode is PWM_BASED. Fixes: 7be865ab8634 ("backlight: new backlight driver for LP855x devices") Signed-off-by: Randy Dunlap Reviewed-by: Daniel Thompson (RISCstar) Link: https://patch.msgid.link/20251111060916.1995920-1-rdunlap@infradead.org Signed-off-by: Lee Jones Signed-off-by: Sasha Levin --- include/linux/platform_data/lp855x.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/platform_data/lp855x.h b/include/linux/platform_data/lp855x.h index ab222dd05bbc2..3b4a891acefe9 100644 --- a/include/linux/platform_data/lp855x.h +++ b/include/linux/platform_data/lp855x.h @@ -124,12 +124,12 @@ struct lp855x_rom_data { }; /** - * struct lp855x_platform_data + * struct lp855x_platform_data - lp855 platform-specific data * @name : Backlight driver name. If it is not defined, default name is set. * @device_control : value of DEVICE CONTROL register * @initial_brightness : initial value of backlight brightness * @period_ns : platform specific pwm period value. unit is nano. - Only valid when mode is PWM_BASED. + * Only valid when mode is PWM_BASED. * @size_program : total size of lp855x_rom_data * @rom_data : list of new eeprom/eprom registers */ -- 2.51.0