From patchwork Mon Apr 29 10:22:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 2499511 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 65162DF25A for ; Mon, 29 Apr 2013 10:23:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758033Ab3D2KXE (ORCPT ); Mon, 29 Apr 2013 06:23:04 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:39867 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758036Ab3D2KXD (ORCPT ); Mon, 29 Apr 2013 06:23:03 -0400 Received: from dflxv15.itg.ti.com ([128.247.5.124]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id r3TAN1YV006731; Mon, 29 Apr 2013 05:23:01 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id r3TAN1lo002334; Mon, 29 Apr 2013 05:23:01 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.2.342.3; Mon, 29 Apr 2013 05:23:01 -0500 Received: from deskari.tieu.ti.com (h64-11.vpn.ti.com [172.24.64.11]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r3TAMvHb015337; Mon, 29 Apr 2013 05:22:59 -0500 From: Tomi Valkeinen To: , CC: Tony Lindgren , , , Archit Taneja , Tomi Valkeinen Subject: [PATCH 01/10] OMAPDSS: Makefile: move omapfb after panels Date: Mon, 29 Apr 2013 13:22:28 +0300 Message-ID: <1367230957-32337-2-git-send-email-tomi.valkeinen@ti.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1367230957-32337-1-git-send-email-tomi.valkeinen@ti.com> References: <1367230957-32337-1-git-send-email-tomi.valkeinen@ti.com> MIME-Version: 1.0 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org omapfb requires the panels to have been probed before omapfb's probe. We currently manage that by having omapfb in late initcall level. However, a much simpler way is to just change the makefile so that omapfb is after the panel drivers. Signed-off-by: Tomi Valkeinen --- drivers/video/omap2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/omap2/Makefile b/drivers/video/omap2/Makefile index 5ea7cb9..296e5c5 100644 --- a/drivers/video/omap2/Makefile +++ b/drivers/video/omap2/Makefile @@ -1,5 +1,5 @@ obj-$(CONFIG_OMAP2_VRFB) += vrfb.o obj-$(CONFIG_OMAP2_DSS) += dss/ -obj-$(CONFIG_FB_OMAP2) += omapfb/ obj-y += displays/ +obj-$(CONFIG_FB_OMAP2) += omapfb/