From patchwork Tue Jul 27 21:24:13 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adrian Alonso X-Patchwork-Id: 60048 X-Patchwork-Delegate: grant.likely@secretlab.ca Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 9938B100989 for ; Wed, 28 Jul 2010 07:22:45 +1000 (EST) Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com [74.125.82.45]) by ozlabs.org (Postfix) with ESMTP id 00FE7B6F11; Wed, 28 Jul 2010 07:22:34 +1000 (EST) Received: by wwf26 with SMTP id 26so1511326wwf.14 for ; Tue, 27 Jul 2010 14:22:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=7wETaunbD7Uj0HK+9kq+hq0MQa2lh+yZZ+/W1Lyd4aI=; b=a/NXCC0E6OuHyeDYRY/y2/GaMETOWUXmAsl8ZobYiTzZhhcPHlEIJD3lrGORxGHOV1 IsZxjc5NjlKj+pAqitkfGGrICc0o1qKGdnkHHfgnbUXmJhmQLaabUPc9wjTkXdCH7qWE SEWx2G87oXm8sPgDKXOmeEfvr8PWooxjG0qTw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=B8qoF4J3x2iLHHf2CT7PJZ0DhybccDLmDryDddjW2FbV8XiPcjjN+TSp+I0R4k0SwA GIXIdsOjGuIVE2+0uvuauaBRJ4EOSvL/YMZcHCKJ098XX9og2B0sDzyW18UGYmNL5k8S Z4tepseqy6F+8zsitknzrj867lLPtOomsTwD0= Received: by 10.227.30.31 with SMTP id s31mr4283161wbc.93.1280265751660; Tue, 27 Jul 2010 14:22:31 -0700 (PDT) Received: from aalonso-pc.lan ([201.153.218.190]) by mx.google.com with ESMTPS id n40sm3024233weq.29.2010.07.27.14.22.28 (version=SSLv3 cipher=RC4-MD5); Tue, 27 Jul 2010 14:22:30 -0700 (PDT) From: Adrian Alonso To: linuxppc-dev@lists.ozlabs.org Subject: [PATCH] xilinxfb: update tft comp versions Date: Tue, 27 Jul 2010 16:24:13 -0500 Message-Id: <1280265853-21245-1-git-send-email-aalonso00@gmail.com> X-Mailer: git-send-email 1.7.2 Cc: devicetree-discuss@lists.ozlabs.org, Adrian Alonso X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org * Add tft display module compatibility for new hardware modules Signed-off-by: Adrian Alonso --- drivers/video/xilinxfb.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/video/xilinxfb.c b/drivers/video/xilinxfb.c index 574dc54..29b5daa 100644 --- a/drivers/video/xilinxfb.c +++ b/drivers/video/xilinxfb.c @@ -485,6 +485,8 @@ static int __devexit xilinxfb_of_remove(struct of_device *op) /* Match table for of_platform binding */ static struct of_device_id xilinxfb_of_match[] __devinitdata = { { .compatible = "xlnx,xps-tft-1.00.a", }, + { .compatible = "xlnx,xps-tft-2.00.a", }, + { .compatible = "xlnx,xps-tft-2.01.a", }, { .compatible = "xlnx,plb-tft-cntlr-ref-1.00.a", }, { .compatible = "xlnx,plb-dvi-cntlr-ref-1.00.c", }, {},