Message ID | 20250131140103.278158-15-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 149B11C8FB5 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=1738332077; cv=none; b=RiAB8S/+vFC29einTCKRU+/zQsu0jIeBXEsqrFX+WhYMfJSFvwOyo8WJll0fgEDZhoDmg2jGEBRaKQDMVRuCOxvhOYZIr3wsrY+DHB+WtXBEOLIjLdPtmSXk0k2GZSxJiuZZVRmZaapK4JboOD0owCny0PTMbJk9iM0k9e2O9+w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738332077; c=relaxed/simple; bh=m4k7UElQMsVQST9SvJuF4QEi5xWNPfJSarr1BxibXcw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nDv24gmfYqh5wQlba1Co/Up2ilrIDaVPaweq4szzettVLxV7iR5vvNSYDpmizEbX0L/VqjuwrBAC85tEqbY+53rKjNo1kOGqwYdIGG9dyBMShA/0E5ee3TY/N/dL9OnH+n0/X7vC1vEn0j3f92g54IgNICa0VlbD2YC8+pFXSig= 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 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 <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 14/16] backlight: tps65217_bl: Do not include <linux/fb.h> 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> 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: 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 |
Series |
backlight: Do not include <linux/fb.h> in drivers
|
expand
|
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 <linux/kernel.h> #include <linux/backlight.h> #include <linux/err.h> -#include <linux/fb.h> #include <linux/mfd/tps65217.h> #include <linux/module.h> #include <linux/platform_device.h>
This driver does not require <linux/fb.h>. Remove the include statement. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> --- drivers/video/backlight/tps65217_bl.c | 1 - 1 file changed, 1 deletion(-)