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