From patchwork Sat Jul 23 17:57:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= X-Patchwork-Id: 593053 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 12944C433EF for ; Sat, 23 Jul 2022 17:58:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238214AbiGWR6N (ORCPT ); Sat, 23 Jul 2022 13:58:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58118 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234988AbiGWR56 (ORCPT ); Sat, 23 Jul 2022 13:57:58 -0400 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C75091AD8F for ; Sat, 23 Jul 2022 10:57:50 -0700 (PDT) Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oFJNq-0007TZ-NT; Sat, 23 Jul 2022 19:57:47 +0200 Received: from [2a0a:edc0:0:900:1d::77] (helo=ptz.office.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1oFJNo-002l3p-Nt; Sat, 23 Jul 2022 19:57:44 +0200 Received: from ukl by ptz.office.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1oFJNn-007374-Q9; Sat, 23 Jul 2022 19:57:43 +0200 From: =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= To: Sascha Hauer , Helge Deller , Shawn Guo Cc: Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , linux-fbdev@vger.kernel.org, linux-arm-kernel@lists.infradead.org, dri-devel@lists.freedesktop.org Subject: [PATCH 3/4] video: fb: imxfb: Fold into only user Date: Sat, 23 Jul 2022 19:57:19 +0200 Message-Id: <20220723175720.76933-3-u.kleine-koenig@pengutronix.de> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220723175720.76933-1-u.kleine-koenig@pengutronix.de> References: <20220723175720.76933-1-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=2487; h=from:subject; bh=si4SB8+oQGJxO+SQRJnNnfR4S832HUXPHQwRl56ppPE=; b=owEBbQGS/pANAwAKAcH8FHityuwJAcsmYgBi3DZ3lXN/3ZIL5hf82aE5oSiueHhE1Tl4O73PB6aZ MT3EnYSJATMEAAEKAB0WIQR+cioWkBis/z50pAvB/BR4rcrsCQUCYtw2dwAKCRDB/BR4rcrsCTFqB/ wIJ2sf6HdWpi++9OGkx0aoFgfXOFNxE/0vM++ZDRRjinE7dq4kjxQRhGnU1BCRr7MwCDxpIUN7+VLo GxQLLRT7BIPzDM/+CntNpXRXZ8XWkNEJacgJt2QqC4kJ9xGqudk6kPcMBUZk9p77RuQ1UV8LoxquJ1 naBTehMT6HbhCZXw5Xlz0++B8VsUhFwZ6djcb/y508Vi0DlaAEhA9dYCFYUos/tJSq/FNdclBJbxD/ grPDRKczoolqZmeQ6pEf+6zPgyPQUyP79JzDWneLInv/2kbEixpf/ZUs6LOArsOdhpdrnBUBZtg4cI dtwToxTrRIPpmrSCCMRSZs5MSozxIl X-Developer-Key: i=u.kleine-koenig@pengutronix.de; a=openpgp; fpr=0D2511F322BFAB1C1580266BE2DCDD9132669BD6 X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: ukl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-fbdev@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org No source file but the driver itself includes the header containing the platform data definition. The last user is gone since commit 8485adf17a15 ("ARM: imx: Remove imx device directory"). Move the remaining symbols directly into the driver and remove the then unused header file. Signed-off-by: Uwe Kleine-König --- MAINTAINERS | 1 - drivers/video/fbdev/imxfb.c | 13 ++++++++++++- include/linux/platform_data/video-imxfb.h | 23 ----------------------- 3 files changed, 12 insertions(+), 25 deletions(-) delete mode 100644 include/linux/platform_data/video-imxfb.h diff --git a/MAINTAINERS b/MAINTAINERS index a6d3bd9d2a8d..52f12f492ed5 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7912,7 +7912,6 @@ L: linux-fbdev@vger.kernel.org L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) S: Maintained F: drivers/video/fbdev/imxfb.c -F: include/linux/platform_data/video-imxfb.h FREESCALE IMX DDR PMU DRIVER M: Frank Li diff --git a/drivers/video/fbdev/imxfb.c b/drivers/video/fbdev/imxfb.c index 85a5bf5639d9..fa6a19c1ae9b 100644 --- a/drivers/video/fbdev/imxfb.c +++ b/drivers/video/fbdev/imxfb.c @@ -41,7 +41,18 @@ #include