From patchwork Fri Jan 31 13:58:32 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955414 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DCE52C0218F for ; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4DD5510E1CB; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="PA7Vc4XJ"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="woAuwMSz"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7E0BD10E1D6 for ; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 474601F38E; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=rtNbOnTYpkqJ5Ufgw9BKzMAZrj2cDa4ZTQkXZhZK6tw=; b=PA7Vc4XJ+0wpzWZtbGDO9TFZqou2ZaxaImuwgU6zkfRRWMCA4Y8NxLGRb5Wh1FG2wWi2Rr QXXe/hRVo0QR9ElAeYTFkkxBa3UzKUB8ceIr8+r70t+gYWeobqUvTEp09OCkKwD2pKBEXk 2eMd4nuU9OOFX11zQ08+/lM+GEkbvjY= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=rtNbOnTYpkqJ5Ufgw9BKzMAZrj2cDa4ZTQkXZhZK6tw=; b=woAuwMSzSv6noAp++A3yQF6xpJjFpRVtg2bMr+tL++8G1yIMnsNjc/p45AMIutJoVJ1WnW FM2odVJ6XreUt4Dg== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id EF1F8139B1; Fri, 31 Jan 2025 14:01:07 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id MEjqOKPXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:07 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 01/16] backlight: 88pm860x_bl: Do not include Date: Fri, 31 Jan 2025 14:58:32 +0100 Message-ID: <20250131140103.278158-2-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: 474601F38E X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd1.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/88pm860x_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/88pm860x_bl.c b/drivers/video/backlight/88pm860x_bl.c index 720b5ada7fe85..0a1db28240763 100644 --- a/drivers/video/backlight/88pm860x_bl.c +++ b/drivers/video/backlight/88pm860x_bl.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:33 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955425 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DA71CC02195 for ; Fri, 31 Jan 2025 14:01:28 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2725110EABF; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="CNt5nwiG"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="4N7mxjRo"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6A41410E1CB for ; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 93E9A1F38F; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZwzhKi978OX+6eV1dpseMviZCH0GFDu4NdtSmY/6DCA=; b=CNt5nwiGt3Auawkn6KksCjEIbL52v6RQD/Pm9JtECsdkKZazYvxkrjB3AvA32BaYXvMQal oAkDCnGpg7E/kPlIuBjdss1ZD9QHJKilDvthctbRaZCk7iISH078JXeiGDdmhlkaA4NYXh 3wQKxwlCu5Ax10Fe09EUJjOYnbukz5I= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZwzhKi978OX+6eV1dpseMviZCH0GFDu4NdtSmY/6DCA=; b=4N7mxjRowtGmZ9GCC/w51iJj/Dbpe+e9RAjN8wMBtXGA8eLxV2MaqEkyggrldvb9TGCPEr CptCcC4k7msOeyBg== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 4927413A7F; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id EICgEKTXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:08 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 02/16] backlight: adp5520_bl: Do not include Date: Fri, 31 Jan 2025 14:58:33 +0100 Message-ID: <20250131140103.278158-3-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: 93E9A1F38F X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/adp5520_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/adp5520_bl.c b/drivers/video/backlight/adp5520_bl.c index aa5c15e8db86e..81c40d355aae4 100644 --- a/drivers/video/backlight/adp5520_bl.c +++ b/drivers/video/backlight/adp5520_bl.c @@ -8,7 +8,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:34 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955417 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id F1891C0218F for ; Fri, 31 Jan 2025 14:01:17 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AADED10E204; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="rYHz3/yE"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="MZ7wsW/w"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="xnkQUMb9"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="62zdGyFv"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9FAC710E216 for ; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id DF8451F391; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YvRSJWIwjkY9HUuT9CfqtdZ/aKrF9jIoKcT/BFIvl3s=; b=rYHz3/yE84p9hIKcrkizqrAyOhHtE5tFT2Ldwm8I6jk/yIoZFnCZjrq7CMhi6QxC5VArOv /ZWBoaZHJUxTlq6lW5A6vYv/y9K37+sCuNj1bVe3rsAEGAL2JdTmifSC4KiBELPavz1mvt 28wj8/R2C+IMNQituiXFxWZoCI01pmU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YvRSJWIwjkY9HUuT9CfqtdZ/aKrF9jIoKcT/BFIvl3s=; b=MZ7wsW/wZQ6hxgiZwDTcxtDIlHvvxjQuGMzkSjSgFHRU2SIgRAttiO1tiGbh7yynQdCBY8 ZQMYUdW1uqitjmCA== Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YvRSJWIwjkY9HUuT9CfqtdZ/aKrF9jIoKcT/BFIvl3s=; b=xnkQUMb9+6r5EVaGCV01MqC8omLUhlGzDzYka6i2CJe8wjbFoDsiP+udOkl5s/jTdCE/ZI kikJNeiQGMyVIPaC76C1Yz/eBnp8T0V3Dtg2qM9pAPGmDpKRyKtMF6kU7xpXaLDM6jRf60 //jgnNNLbBQ16rkMaiuk1R6yxIV9GBQ= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332068; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YvRSJWIwjkY9HUuT9CfqtdZ/aKrF9jIoKcT/BFIvl3s=; b=62zdGyFv5FNr1P6cVm+B/hiwJB/rHGSmKhyo7iUSPF08yYCH+FUSLqaJ/soqUZlRW/mwsX Ew/w/uKRJgaPurAw== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 9505A13AA0; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id +AcZI6TXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:08 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 03/16] backlight: adp8860_bl: Do not include Date: Fri, 31 Jan 2025 14:58:34 +0100 Message-ID: <20250131140103.278158-4-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; RCVD_COUNT_TWO(0.00)[2]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCPT_COUNT_SEVEN(0.00)[8]; FUZZY_BLOCKED(0.00)[rspamd.com]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:email,suse.de:mid,imap1.dmz-prg2.suse.org:helo]; TO_DN_SOME(0.00)[]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/adp8860_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c index f51ada4795e8e..d4bbd7a7406b0 100644 --- a/drivers/video/backlight/adp8860_bl.c +++ b/drivers/video/backlight/adp8860_bl.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:35 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955415 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id CE222C0218F for ; Fri, 31 Jan 2025 14:01:14 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 850D210E1D6; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="wbJu8QXJ"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="W5OILC6u"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="wbJu8QXJ"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="W5OILC6u"; dkim-atps=neutral Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id 794CE10E1D2 for ; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 3F3412115D; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pjdec7UXRBZyBEnQEzOH/LDCn+Wd5CNY0Cs7zZNamt4=; b=wbJu8QXJpxAUqWKEwYpNQPy6LIoQbOFimPg6dEoioe480wEHHuwASQX0gpqyNZm/pTi2BP hbsDTlF4bts6qr/Tocqgw+yZZQb7Kd3eWQxcwAwnobYAiB4Pfka0rpQGm3XO5owyhqYTNS nHHNrq2OEtRHARiEeHsJUkmtjzpgAZg= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pjdec7UXRBZyBEnQEzOH/LDCn+Wd5CNY0Cs7zZNamt4=; b=W5OILC6ue4DVMFNAWfzeM/SJq6jz6ZXIE0CADneoQq0KetYU7CUBBjSD+MeKR0eu28Etuy hTDjzkGlmZ98I6Dw== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pjdec7UXRBZyBEnQEzOH/LDCn+Wd5CNY0Cs7zZNamt4=; b=wbJu8QXJpxAUqWKEwYpNQPy6LIoQbOFimPg6dEoioe480wEHHuwASQX0gpqyNZm/pTi2BP hbsDTlF4bts6qr/Tocqgw+yZZQb7Kd3eWQxcwAwnobYAiB4Pfka0rpQGm3XO5owyhqYTNS nHHNrq2OEtRHARiEeHsJUkmtjzpgAZg= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pjdec7UXRBZyBEnQEzOH/LDCn+Wd5CNY0Cs7zZNamt4=; b=W5OILC6ue4DVMFNAWfzeM/SJq6jz6ZXIE0CADneoQq0KetYU7CUBBjSD+MeKR0eu28Etuy hTDjzkGlmZ98I6Dw== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id E0D3A13AF1; Fri, 31 Jan 2025 14:01:08 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id 2G2JNaTXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:08 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 04/16] backlight: adp8870_bl: Do not include Date: Fri, 31 Jan 2025 14:58:35 +0100 Message-ID: <20250131140103.278158-5-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; RCVD_COUNT_TWO(0.00)[2]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCPT_COUNT_SEVEN(0.00)[8]; FUZZY_BLOCKED(0.00)[rspamd.com]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:email,suse.de:mid]; TO_DN_SOME(0.00)[]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/adp8870_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/adp8870_bl.c b/drivers/video/backlight/adp8870_bl.c index ad4bd4c8f441d..e09e20492e7c1 100644 --- a/drivers/video/backlight/adp8870_bl.c +++ b/drivers/video/backlight/adp8870_bl.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955420 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A84CDC02192 for ; Fri, 31 Jan 2025 14:01:24 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8DCF010EAB9; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="Wzd8FjwE"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="xKdpx5gJ"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="Wzd8FjwE"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="xKdpx5gJ"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id CE38310E1CB for ; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 877CD1F393; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=S153l6B3AduIBZNfDiyEhzgGOzMGd5A1xHyAvVsNPy8=; b=Wzd8FjwEAw2KoQXYHFFYbhxcKUjuXGpj0tNdMlrQ0VbUem0qsVD5be2rmFxC0d+V8cMJhV t6AaQnNtG+0IlUCyK/YWbOPkz+i41lEkdw4mezoL5LwXRAvOSpsd9PK42mgPcsms/nMuAW 7GznnUeoCGauCx8GtTex3CUdCg6rBlg= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=S153l6B3AduIBZNfDiyEhzgGOzMGd5A1xHyAvVsNPy8=; b=xKdpx5gJnG7dizMZflIsrtsmERreHoo6us32XrUVtpMuRNFJJfj+CVOUBg3D+mVlSstV7o 7XTyBUH/KhtOetAg== Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=S153l6B3AduIBZNfDiyEhzgGOzMGd5A1xHyAvVsNPy8=; b=Wzd8FjwEAw2KoQXYHFFYbhxcKUjuXGpj0tNdMlrQ0VbUem0qsVD5be2rmFxC0d+V8cMJhV t6AaQnNtG+0IlUCyK/YWbOPkz+i41lEkdw4mezoL5LwXRAvOSpsd9PK42mgPcsms/nMuAW 7GznnUeoCGauCx8GtTex3CUdCg6rBlg= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=S153l6B3AduIBZNfDiyEhzgGOzMGd5A1xHyAvVsNPy8=; b=xKdpx5gJnG7dizMZflIsrtsmERreHoo6us32XrUVtpMuRNFJJfj+CVOUBg3D+mVlSstV7o 7XTyBUH/KhtOetAg== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 3873F13AF2; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id uItzDKXXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:09 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 05/16] backlight: as3711_bl: Do not include Date: Fri, 31 Jan 2025 14:58:36 +0100 Message-ID: <20250131140103.278158-6-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:mid,suse.de:email,imap1.dmz-prg2.suse.org:helo]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/as3711_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/as3711_bl.c b/drivers/video/backlight/as3711_bl.c index e6f66bb35ef59..9f89eb19894e3 100644 --- a/drivers/video/backlight/as3711_bl.c +++ b/drivers/video/backlight/as3711_bl.c @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:37 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955429 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 44538C02192 for ; Fri, 31 Jan 2025 14:01:32 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id DB62710EAC6; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="fXajsUZC"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="gu1qDwWy"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="fXajsUZC"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="gu1qDwWy"; dkim-atps=neutral Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id 16C3E10E1D2 for ; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id C6A1B2116B; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=CYKMc2A//rX8y0XzyX5jmLlgGG0hcFXpJOoHuK/sQuE=; b=fXajsUZC7N2GmsqksNMXf8QkNHvQ4XjzQpKXi7s6mtSibxHt8uUGjy7mHQZMFJaOwP0f+2 Tw2BC1gHEYmy7PGH9h5v1nGvD25KBY8m4UPg4UZKk8UgipsAPfFlPKRA7Xc+fnVAdgF40q emM8pv0RtyHnyOX0fPGB832EN8/sfoU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=CYKMc2A//rX8y0XzyX5jmLlgGG0hcFXpJOoHuK/sQuE=; b=gu1qDwWy/n/BQRrNavxeQs/0EDEeLBzMLzkdi4Fqt6TsvrazEEdWcbtbw5WDX6+s10S+Q7 Mp197nclF8Bv3iBQ== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=CYKMc2A//rX8y0XzyX5jmLlgGG0hcFXpJOoHuK/sQuE=; b=fXajsUZC7N2GmsqksNMXf8QkNHvQ4XjzQpKXi7s6mtSibxHt8uUGjy7mHQZMFJaOwP0f+2 Tw2BC1gHEYmy7PGH9h5v1nGvD25KBY8m4UPg4UZKk8UgipsAPfFlPKRA7Xc+fnVAdgF40q emM8pv0RtyHnyOX0fPGB832EN8/sfoU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332069; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=CYKMc2A//rX8y0XzyX5jmLlgGG0hcFXpJOoHuK/sQuE=; b=gu1qDwWy/n/BQRrNavxeQs/0EDEeLBzMLzkdi4Fqt6TsvrazEEdWcbtbw5WDX6+s10S+Q7 Mp197nclF8Bv3iBQ== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 83056133A6; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id 2E3FHqXXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:09 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 06/16] backlight: bd6107_bl: Do not include Date: Fri, 31 Jan 2025 14:58:37 +0100 Message-ID: <20250131140103.278158-7-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:email,suse.de:mid]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/bd6107.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/bd6107.c b/drivers/video/backlight/bd6107.c index 90764f83d2f12..74567af84e97f 100644 --- a/drivers/video/backlight/bd6107.c +++ b/drivers/video/backlight/bd6107.c @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:38 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955419 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B9CC2C02194 for ; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9D7B710EABC; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="Bh2OhAZM"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="2AKc5D6j"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="Bh2OhAZM"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="2AKc5D6j"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id D6DA310EAB9 for ; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 203A31F394; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VKv3SXdA94yp0UQtHSS9uJDWnpHaqoMXoxCuYxznM+Y=; b=Bh2OhAZMjOoNBuFPnh2LEzWVbLaLCLQrixtb+T79MGaAmhoV9HgJOqZUPBSMqQa29jMEh9 w8gIphvyLGqZm9ykhhEYyi4ihBtIc4tu0Ng0Z9OWWuvbng9zZz6I3aWVRpMGtADorUomfK vFWmSX5V06FlboMaa2fQ27hlMpLa2O4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VKv3SXdA94yp0UQtHSS9uJDWnpHaqoMXoxCuYxznM+Y=; b=2AKc5D6jknnrbTlLvq1d/gQ/TT4CkRRHhJ1i408/jnq/LqboMhEb20Lf1WeY+ALUlWNQl2 5bHlv1t/pMX20iCg== Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VKv3SXdA94yp0UQtHSS9uJDWnpHaqoMXoxCuYxznM+Y=; b=Bh2OhAZMjOoNBuFPnh2LEzWVbLaLCLQrixtb+T79MGaAmhoV9HgJOqZUPBSMqQa29jMEh9 w8gIphvyLGqZm9ykhhEYyi4ihBtIc4tu0Ng0Z9OWWuvbng9zZz6I3aWVRpMGtADorUomfK vFWmSX5V06FlboMaa2fQ27hlMpLa2O4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VKv3SXdA94yp0UQtHSS9uJDWnpHaqoMXoxCuYxznM+Y=; b=2AKc5D6jknnrbTlLvq1d/gQ/TT4CkRRHhJ1i408/jnq/LqboMhEb20Lf1WeY+ALUlWNQl2 5bHlv1t/pMX20iCg== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id CD478139B1; Fri, 31 Jan 2025 14:01:09 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id sAbcMKXXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:09 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 07/16] backlight: da903x_bl: Do not include Date: Fri, 31 Jan 2025 14:58:38 +0100 Message-ID: <20250131140103.278158-8-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[99.99%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:mid,suse.de:email]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/da903x_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/da903x_bl.c b/drivers/video/backlight/da903x_bl.c index 71f21bbc7a9fc..81ff42bec0ad4 100644 --- a/drivers/video/backlight/da903x_bl.c +++ b/drivers/video/backlight/da903x_bl.c @@ -12,7 +12,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:39 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955418 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E79AEC0218F for ; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5082010E216; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="zr8M+KhR"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="rIdAqksO"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="zr8M+KhR"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="rIdAqksO"; dkim-atps=neutral Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id D4E0310E216 for ; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 692EB1F395; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=cQXfkTKYHmCU52v6o2Jlu7GlE9D86aXEUevnnOUdkaM=; b=zr8M+KhRtoQNLyC0QKKXURj6qWD1F8uSQeBm2bgylDVE/fbqdgZvsZOKGQbg8hHaZYiV/p ESxOJQjdQGQm5E/zEMqvda662VohR0900BQSBwWmWj+ez5QozzI75JyrQlBiABTmQP9DGd xFwlsnngSLaWRXGLf8jEkGHSZMKMDBk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=cQXfkTKYHmCU52v6o2Jlu7GlE9D86aXEUevnnOUdkaM=; b=rIdAqksOW55+HZm1p1Uf3qMC/kkwcAvvN31X7f4AzGwNU4bbXpCD1C4liJVb4KcuZBAihg 5NDFl1bdcLqv/sDA== Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=cQXfkTKYHmCU52v6o2Jlu7GlE9D86aXEUevnnOUdkaM=; b=zr8M+KhRtoQNLyC0QKKXURj6qWD1F8uSQeBm2bgylDVE/fbqdgZvsZOKGQbg8hHaZYiV/p ESxOJQjdQGQm5E/zEMqvda662VohR0900BQSBwWmWj+ez5QozzI75JyrQlBiABTmQP9DGd xFwlsnngSLaWRXGLf8jEkGHSZMKMDBk= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=cQXfkTKYHmCU52v6o2Jlu7GlE9D86aXEUevnnOUdkaM=; b=rIdAqksOW55+HZm1p1Uf3qMC/kkwcAvvN31X7f4AzGwNU4bbXpCD1C4liJVb4KcuZBAihg 5NDFl1bdcLqv/sDA== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 25B69133A6; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id 0A3PB6bXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:10 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 08/16] backlight: da9052_bl: Do not include Date: Fri, 31 Jan 2025 14:58:39 +0100 Message-ID: <20250131140103.278158-9-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[99.99%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:email,suse.de:mid]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/da9052_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/da9052_bl.c b/drivers/video/backlight/da9052_bl.c index 5e13ef96b717c..f41523d78121b 100644 --- a/drivers/video/backlight/da9052_bl.c +++ b/drivers/video/backlight/da9052_bl.c @@ -9,7 +9,6 @@ #include #include -#include #include #include From patchwork Fri Jan 31 13:58:40 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955428 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6261DC02194 for ; Fri, 31 Jan 2025 14:01:31 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8048E10EAC4; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="r56t+SiP"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="p57X0uPv"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="r56t+SiP"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="p57X0uPv"; dkim-atps=neutral Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id EDC3610EABB for ; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id B5FBB2116D; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a/ldBNqpY1JajuOjQrzqKVQu/8HIFUoEEDdLki3cEtQ=; b=r56t+SiPpNg2LM0otz3mhw3WYOyaOyfzaa8VGqRLRtX7PL+ZA8k1hKD3bmY5RDeovEWofv P9HAssu6JKgToiadFqrs/xjhrmKp9VnU93Zx9iNbzySwdeHpSKQHr/cUD3wvZbKwsObRLl Mbc75YNckvv6WTiUhS/b2ZBJICkf7aI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a/ldBNqpY1JajuOjQrzqKVQu/8HIFUoEEDdLki3cEtQ=; b=p57X0uPvpuzf24iPTgfluADUlNwdiO9RyNqz/EaUQUycN9mgGIKQc79P6f9vdZYoMSsTH+ LNC+WCaqJ1Pw4JCA== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a/ldBNqpY1JajuOjQrzqKVQu/8HIFUoEEDdLki3cEtQ=; b=r56t+SiPpNg2LM0otz3mhw3WYOyaOyfzaa8VGqRLRtX7PL+ZA8k1hKD3bmY5RDeovEWofv P9HAssu6JKgToiadFqrs/xjhrmKp9VnU93Zx9iNbzySwdeHpSKQHr/cUD3wvZbKwsObRLl Mbc75YNckvv6WTiUhS/b2ZBJICkf7aI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332070; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=a/ldBNqpY1JajuOjQrzqKVQu/8HIFUoEEDdLki3cEtQ=; b=p57X0uPvpuzf24iPTgfluADUlNwdiO9RyNqz/EaUQUycN9mgGIKQc79P6f9vdZYoMSsTH+ LNC+WCaqJ1Pw4JCA== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 70C02139B1; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id CGAyGqbXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:10 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 09/16] backlight: ep93xx_bl: Do not include Date: Fri, 31 Jan 2025 14:58:40 +0100 Message-ID: <20250131140103.278158-10-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:mid,suse.de:email,imap1.dmz-prg2.suse.org:helo]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/ep93xx_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c index 2387009d452d0..f59effc023528 100644 --- a/drivers/video/backlight/ep93xx_bl.c +++ b/drivers/video/backlight/ep93xx_bl.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #define EP93XX_MAX_COUNT 255 From patchwork Fri Jan 31 13:58:41 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955427 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8EFB3C0218F for ; Fri, 31 Jan 2025 14:01:30 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 27BB110EAC0; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2B6B410EABC for ; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 0C98E1F396; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id BD0BA133A6; Fri, 31 Jan 2025 14:01:10 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id iKnTLKbXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:10 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 10/16] backlight: hp680_bl: Do not include Date: Fri, 31 Jan 2025 14:58:41 +0100 Message-ID: <20250131140103.278158-11-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: 0C98E1F396 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/hp680_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/hp680_bl.c b/drivers/video/backlight/hp680_bl.c index fa9a983533b2d..d8c2e4ada384b 100644 --- a/drivers/video/backlight/hp680_bl.c +++ b/drivers/video/backlight/hp680_bl.c @@ -15,7 +15,6 @@ #include #include #include -#include #include #include From patchwork Fri Jan 31 13:58:42 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955422 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 888DCC02195 for ; Fri, 31 Jan 2025 14:01:26 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B6FAF10EABD; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 85D3510E216 for ; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 623631F397; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 13372133A6; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id aGBmA6fXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:11 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 11/16] backlight: locomolcd: Do not include Date: Fri, 31 Jan 2025 14:58:42 +0100 Message-ID: <20250131140103.278158-12-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: 623631F397 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd1.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/locomolcd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/locomolcd.c b/drivers/video/backlight/locomolcd.c index 346d3e29a8435..1b493fb0516db 100644 --- a/drivers/video/backlight/locomolcd.c +++ b/drivers/video/backlight/locomolcd.c @@ -16,7 +16,6 @@ #include #include #include -#include #include #include From patchwork Fri Jan 31 13:58:43 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955421 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 99ABBC0218F for ; Fri, 31 Jan 2025 14:01:25 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9CA8510EABB; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id C73C210E216 for ; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id A3E031F441; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 5E33A139B1; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id wE+oFafXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:11 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 12/16] backlight: lv5207lp: Do not include Date: Fri, 31 Jan 2025 14:58:43 +0100 Message-ID: <20250131140103.278158-13-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: A3E031F441 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/lv5207lp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/lv5207lp.c b/drivers/video/backlight/lv5207lp.c index 5f60989fa70f2..a205f004eab24 100644 --- a/drivers/video/backlight/lv5207lp.c +++ b/drivers/video/backlight/lv5207lp.c @@ -9,7 +9,6 @@ #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:44 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955424 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 207FDC0218F for ; Fri, 31 Jan 2025 14:01:28 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2FA4D10EAC1; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="l+gb1SJq"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="DRoAmseB"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="l+gb1SJq"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="DRoAmseB"; dkim-atps=neutral Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3B4C310E216 for ; Fri, 31 Jan 2025 14:01:13 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 07C2E2116E; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OWOdgc7zPR+OXhkNKCTndOMEfg2mAAXQ7aVZpb6Yoz4=; b=l+gb1SJqgSbN0E0Iz8cHA/LlnKd/SW1YLc+Gw+wcTAPu6rRe8WypeQ+bbKjOWdXIKYsH39 jkqBkuVkhs6VyZzlp/ANvdeWXv0Tvs36B66NFXEuKfXbM27IXJEW/ux0Gs2sqCXFOxNcDv ogg+rzpxH+Eq63TTmc0MhO/45+gId0g= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OWOdgc7zPR+OXhkNKCTndOMEfg2mAAXQ7aVZpb6Yoz4=; b=DRoAmseB+1CPhlzD7dbMTZSZaEBHlK7u95O1PFDK934SUFZw9+/1ytgUxK3xTQnTR0zhTm YO1Mgbf2cmQIwgAw== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OWOdgc7zPR+OXhkNKCTndOMEfg2mAAXQ7aVZpb6Yoz4=; b=l+gb1SJqgSbN0E0Iz8cHA/LlnKd/SW1YLc+Gw+wcTAPu6rRe8WypeQ+bbKjOWdXIKYsH39 jkqBkuVkhs6VyZzlp/ANvdeWXv0Tvs36B66NFXEuKfXbM27IXJEW/ux0Gs2sqCXFOxNcDv ogg+rzpxH+Eq63TTmc0MhO/45+gId0g= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OWOdgc7zPR+OXhkNKCTndOMEfg2mAAXQ7aVZpb6Yoz4=; b=DRoAmseB+1CPhlzD7dbMTZSZaEBHlK7u95O1PFDK934SUFZw9+/1ytgUxK3xTQnTR0zhTm YO1Mgbf2cmQIwgAw== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id AA912133A6; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id SGhKKKfXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:11 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 13/16] backlight: max8925_bl: Do not include Date: Fri, 31 Jan 2025 14:58:44 +0100 Message-ID: <20250131140103.278158-14-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:mid,suse.de:email]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/max8925_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/max8925_bl.c b/drivers/video/backlight/max8925_bl.c index e607ec6fd4bf4..4ac20a59e007f 100644 --- a/drivers/video/backlight/max8925_bl.c +++ b/drivers/video/backlight/max8925_bl.c @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:45 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955423 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 5C93BC02194 for ; Fri, 31 Jan 2025 14:01:27 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D907D10EABE; Fri, 31 Jan 2025 14:01:22 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7545010EAB9 for ; Fri, 31 Jan 2025 14:01:13 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 549041F442; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 03D5E139B1; Fri, 31 Jan 2025 14:01:11 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id SKs1O6fXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:11 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 14/16] backlight: tps65217_bl: Do not include Date: Fri, 31 Jan 2025 14:58:45 +0100 Message-ID: <20250131140103.278158-15-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: 549041F442 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/tps65217_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/tps65217_bl.c b/drivers/video/backlight/tps65217_bl.c index d96d713fe7db3..8aa860350644f 100644 --- a/drivers/video/backlight/tps65217_bl.c +++ b/drivers/video/backlight/tps65217_bl.c @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:46 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955430 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 23B68C02195 for ; Fri, 31 Jan 2025 14:01:33 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B489C10EAC5; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=suse.de header.i=@suse.de header.b="oYow7gIX"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="QFUmM4RZ"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="oYow7gIX"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="QFUmM4RZ"; dkim-atps=neutral Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id D127510E216 for ; Fri, 31 Jan 2025 14:01:13 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (unknown [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 965AA2116F; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PpDd0TIYzuCeM8DUsoX8hSKVajIuHJ6nKlybjfb8xUs=; b=oYow7gIXOZGCWG71y3s/k9hW98/ZSvP1GUS4WZX1NzSipcOtjKanYEiAdoHoG6gVWiNtvF inQScQmNKGaQzCnd6/4Y560psh/pXPrpRFBdcdiA/fJoSUiJNfJ3n/amYNKwRVqJ4/0t19 neC6r3KWf35fM+boIIN6n/+X5cbKaeU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PpDd0TIYzuCeM8DUsoX8hSKVajIuHJ6nKlybjfb8xUs=; b=QFUmM4RZwaUFxCxOPAUvkOKXQ1wRRijyPEtDbaB6BYZWgiVX0RuOwzBwbyyWTPC2yqZNDj R2TFRUFpPB0rgNDQ== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PpDd0TIYzuCeM8DUsoX8hSKVajIuHJ6nKlybjfb8xUs=; b=oYow7gIXOZGCWG71y3s/k9hW98/ZSvP1GUS4WZX1NzSipcOtjKanYEiAdoHoG6gVWiNtvF inQScQmNKGaQzCnd6/4Y560psh/pXPrpRFBdcdiA/fJoSUiJNfJ3n/amYNKwRVqJ4/0t19 neC6r3KWf35fM+boIIN6n/+X5cbKaeU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1738332072; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=PpDd0TIYzuCeM8DUsoX8hSKVajIuHJ6nKlybjfb8xUs=; b=QFUmM4RZwaUFxCxOPAUvkOKXQ1wRRijyPEtDbaB6BYZWgiVX0RuOwzBwbyyWTPC2yqZNDj R2TFRUFpPB0rgNDQ== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 502AB133A6; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id MGBTEqjXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:12 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 15/16] backlight: vgg2432a4: Do not include Date: Fri, 31 Jan 2025 14:58:46 +0100 Message-ID: <20250131140103.278158-16-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-0.998]; MIME_GOOD(-0.10)[text/plain]; DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,suse.de:mid,suse.de:email]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; ARC_NA(0.00)[]; TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+]; FROM_EQ_ENVFROM(0.00)[]; FREEMAIL_TO(0.00)[kernel.org,gmail.com,analog.com,diasemi.com]; RCPT_COUNT_SEVEN(0.00)[8]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[]; FUZZY_BLOCKED(0.00)[rspamd.com]; R_RATELIMIT(0.00)[to_ip_from(RLegg5g4pk98t76ga9u9jr5icm)]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FREEMAIL_ENVRCPT(0.00)[gmail.com] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/vgg2432a4.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/vgg2432a4.c b/drivers/video/backlight/vgg2432a4.c index bfc1913e8b55e..3005eba6c82c7 100644 --- a/drivers/video/backlight/vgg2432a4.c +++ b/drivers/video/backlight/vgg2432a4.c @@ -10,7 +10,6 @@ #include #include -#include #include #include #include From patchwork Fri Jan 31 13:58:47 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Zimmermann X-Patchwork-Id: 13955426 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B9B38C02192 for ; Fri, 31 Jan 2025 14:01:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5313F10EAC3; Fri, 31 Jan 2025 14:01:23 +0000 (UTC) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) by gabe.freedesktop.org (Postfix) with ESMTPS id 118AC10EAB9 for ; Fri, 31 Jan 2025 14:01:14 +0000 (UTC) Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id E11291F443; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Authentication-Results: smtp-out2.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 9CC94139B1; Fri, 31 Jan 2025 14:01:12 +0000 (UTC) Received: from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167]) by imap1.dmz-prg2.suse.org with ESMTPSA id eFn1JKjXnGfbcQAAD6G6ig (envelope-from ); Fri, 31 Jan 2025 14:01:12 +0000 From: Thomas Zimmermann To: lee@kernel.org, danielt@kernel.org, jingoohan1@gmail.com, michael.hennerich@analog.com, support.opensource@diasemi.com Cc: dri-devel@lists.freedesktop.org, linux-fbdev@vger.kernel.org, Thomas Zimmermann Subject: [PATCH 16/16] backlight: wm831x_bl: Do not include Date: Fri, 31 Jan 2025 14:58:47 +0100 Message-ID: <20250131140103.278158-17-tzimmermann@suse.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250131140103.278158-1-tzimmermann@suse.de> References: <20250131140103.278158-1-tzimmermann@suse.de> MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Rspamd-Queue-Id: E11291F443 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This driver does not require . Remove the include statement. Signed-off-by: Thomas Zimmermann --- drivers/video/backlight/wm831x_bl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/video/backlight/wm831x_bl.c b/drivers/video/backlight/wm831x_bl.c index c5aaee205bdfb..49027f04a1ecb 100644 --- a/drivers/video/backlight/wm831x_bl.c +++ b/drivers/video/backlight/wm831x_bl.c @@ -9,7 +9,6 @@ #include #include #include -#include #include #include