From patchwork Thu Feb 8 13:24:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 10207149 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 01C21600F6 for ; Thu, 8 Feb 2018 13:25:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E700A294FE for ; Thu, 8 Feb 2018 13:25:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DBCEB29502; Thu, 8 Feb 2018 13:25:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8D7E3294FE for ; Thu, 8 Feb 2018 13:25:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751343AbeBHNZK (ORCPT ); Thu, 8 Feb 2018 08:25:10 -0500 Received: from lelnx193.ext.ti.com ([198.47.27.77]:39670 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751079AbeBHNZJ (ORCPT ); Thu, 8 Feb 2018 08:25:09 -0500 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by lelnx193.ext.ti.com (8.15.1/8.15.1) with ESMTP id w18DP6oY017782; Thu, 8 Feb 2018 07:25:06 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1518096306; bh=qS4aZHLzQnljeYW+SkHgBRxHDp8o8kB2wNPLQXkYXdg=; h=From:To:CC:Subject:Date; b=OJvStVyVKcPOTWj2zxGybEfkk2C7Czh6iHlmhKzmZtJDKQeklvZiIT7dzbHgO6Dt3 151lWu+pXFJUhYmwV8QO3r+OmoSjjb5EI7cyf8+hBD+BG3vKVSTm6/bDyAhKbez7jx 9KDSJ2R/P5Ga1/lm9PFlCfIiBEOjn8gXykEfV0C4= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id w18DP5xW029625; Thu, 8 Feb 2018 07:25:06 -0600 Received: from DFLE102.ent.ti.com (10.64.6.23) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1261.35; Thu, 8 Feb 2018 07:25:05 -0600 Received: from dlep32.itg.ti.com (157.170.170.100) by DFLE102.ent.ti.com (10.64.6.23) with Microsoft SMTP Server (version=TLS1_0, cipher=TLS_RSA_WITH_AES_256_CBC_SHA) id 15.1.1261.35 via Frontend Transport; Thu, 8 Feb 2018 07:25:05 -0600 Received: from deskari.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id w18DP3Xv008860; Thu, 8 Feb 2018 07:25:04 -0600 From: Tomi Valkeinen To: Bartlomiej Zolnierkiewicz , CC: , Tomi Valkeinen Subject: [PATCH] video: omapfb: fix missing #includes Date: Thu, 8 Feb 2018 15:24:54 +0200 Message-ID: <1518096294-14427-1-git-send-email-tomi.valkeinen@ti.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Something has changed with the include files and omapfb no longer compiles as it is not explicitly including linux/pinctrl/consumer.h and linux/seq_file.h. Add the missing #includes. Signed-off-by: Tomi Valkeinen Tested-by: Tony Lindgren --- This is on top of today's Linus' master branch. drivers/video/fbdev/omap2/omapfb/dss/dss.c | 1 + drivers/video/fbdev/omap2/omapfb/dss/hdmi_phy.c | 1 + drivers/video/fbdev/omap2/omapfb/dss/hdmi_pll.c | 1 + drivers/video/fbdev/omap2/omapfb/dss/hdmi_wp.c | 1 + 4 files changed, 4 insertions(+) diff --git a/drivers/video/fbdev/omap2/omapfb/dss/dss.c b/drivers/video/fbdev/omap2/omapfb/dss/dss.c index 39fe7247ff98..f0cac9e0eb94 100644 --- a/drivers/video/fbdev/omap2/omapfb/dss/dss.c +++ b/drivers/video/fbdev/omap2/omapfb/dss/dss.c @@ -40,6 +40,7 @@ #include #include #include +#include #include