Message ID | 20250131140103.278158-13-tzimmermann@suse.de |
---|---|
State | New |
Headers | show
Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 688991C82F4 for <linux-fbdev@vger.kernel.org>; Fri, 31 Jan 2025 14:01:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738332079; cv=none; b=W7ZVZHXrpNseTEuycoo/4xiu6T4Jo9nZeiMcWODc+2nfO5RZx9RmxSR7ZYFnTA8iN4jCBteqUEEWhovQom+0bNmPB4ECVd08oeASHU5Xdynr9KLwFhpCqoniuxbFguYPvjztoe6QoX8dUIvE5CrcllsxcYnNM5VgbIvd2neJExg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738332079; c=relaxed/simple; bh=2rXXJnc/up+pofbEAgJdpfqck3/FW1Jy/gotpmj+Pp4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=C+OlUMDLe9/2DmMZCINAEr9x42Pxo9KbIoS7+NikKOeshxFnbfvTzAx6/JH0cxMUNE/h8OHEcRPnmFzau3bSIBMt0hFeYPiRqTlrBZg2S0wtiX+NezjAirKDtuQb0XYhGIeewwURJypwJ+EcQV9f4NMlqGeotBS2DQPBxofpS7U= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; arc=none smtp.client-ip=195.135.223.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de 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 <tzimmermann@suse.de>); Fri, 31 Jan 2025 14:01:11 +0000 From: Thomas Zimmermann <tzimmermann@suse.de> 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 <tzimmermann@suse.de> Subject: [PATCH 12/16] backlight: lv5207lp: Do not include <linux/fb.h> 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> Precedence: bulk X-Mailing-List: linux-fbdev@vger.kernel.org List-Id: <linux-fbdev.vger.kernel.org> List-Subscribe: <mailto:linux-fbdev+subscribe@vger.kernel.org> List-Unsubscribe: <mailto:linux-fbdev+unsubscribe@vger.kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Score: -4.00 X-Spam-Flag: NO 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 |
Series |
backlight: Do not include <linux/fb.h> in drivers
|
expand
|
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 <linux/backlight.h> #include <linux/err.h> -#include <linux/fb.h> #include <linux/i2c.h> #include <linux/module.h> #include <linux/platform_data/lv5207lp.h>
This driver does not require <linux/fb.h>. Remove the include statement. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> --- drivers/video/backlight/lv5207lp.c | 1 - 1 file changed, 1 deletion(-)