From patchwork Tue Dec 13 23:38:21 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 9473381 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 8C13060762 for ; Tue, 13 Dec 2016 23:38:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 80B6F2855A for ; Tue, 13 Dec 2016 23:38:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7597628598; Tue, 13 Dec 2016 23:38:03 +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=ham 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 2F2932855A for ; Tue, 13 Dec 2016 23:38:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752378AbcLMXiB (ORCPT ); Tue, 13 Dec 2016 18:38:01 -0500 Received: from galahad.ideasonboard.com ([185.26.127.97]:41953 "EHLO galahad.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751913AbcLMXiB (ORCPT ); Tue, 13 Dec 2016 18:38:01 -0500 Received: from avalon.bb.dnainternet.fi (dfj612ybrt5fhg77mgycy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:2e86:4862:ef6a:2804]) by galahad.ideasonboard.com (Postfix) with ESMTPSA id D0D2F2084D; Wed, 14 Dec 2016 00:37:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1481672264; bh=pbDy+ichD2Wmztj03BFqBFxE/PfZ5KNFyA+KDwrAt5s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nvduzL32IJBWvgfhiWUMpkSIa8Yzl8+KqXmNJdWSInPegINyEs5MPbhM9ed/28gwe iFxcG+7LBr8RZK086dvEMgILvkKj97kSxycwCfMxtIazza/rUX/x5GrkECDF/khv0Y fo1XctU0+LWMmIYMqMKexoygCcJJtnDw04CGnXRU= From: Laurent Pinchart To: dri-devel@lists.freedesktop.org Cc: linux-omap@vger.kernel.org, Tomi Valkeinen Subject: [PATCH/RFC 2/7] ARM: OMAP2+: Populate the omapdss platform data OMAP revision Date: Wed, 14 Dec 2016 01:38:21 +0200 Message-Id: <1481672306-22564-3-git-send-email-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.7.3 In-Reply-To: <1481672306-22564-1-git-send-email-laurent.pinchart@ideasonboard.com> References: <1481672306-22564-1-git-send-email-laurent.pinchart@ideasonboard.com> 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 The omapdss platform data OMAP revision field will be used by the omapdss driver, populate it. Signed-off-by: Laurent Pinchart --- arch/arm/mach-omap2/display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c index 8fa01c0ecdb2..686cd22a4373 100644 --- a/arch/arm/mach-omap2/display.c +++ b/arch/arm/mach-omap2/display.c @@ -375,6 +375,7 @@ int __init omapdss_init_of(void) } board_data.version = ver; + board_data.omaprev = GET_OMAP_TYPE; omap_display_device.dev.platform_data = &board_data;