From patchwork Thu Sep 2 05:52:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Barksdale X-Patchwork-Id: 148461 X-Patchwork-Delegate: tomi.valkeinen@nokia.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o825qJHc024998 for ; Thu, 2 Sep 2010 05:52:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752634Ab0IBFwT (ORCPT ); Thu, 2 Sep 2010 01:52:19 -0400 Received: from mail-vw0-f46.google.com ([209.85.212.46]:55951 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751039Ab0IBFwS (ORCPT ); Thu, 2 Sep 2010 01:52:18 -0400 Received: by vws3 with SMTP id 3so85839vws.19 for ; Wed, 01 Sep 2010 22:52:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=QDOreEjwm+UTmU0ZebXW/V/dIS4inifxossHcPGB8EE=; b=cdawkXoUhHesNnJAFeAbmVD8E3GA0Wiua1ZmSqDHgSvFKEUzqZlK4tOIxjB4SchPSA OHyn6KvK+TaC9BsgrXZfeooPPnjL2RwbohQuL5Xb8USr4qbNnC52A8Y6X6wAnNy5MDh1 g+UWa8J03lk1HtKJ9eLtbHwDFwDPsgdAkmvaI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=cThdrMFOUMg4WUySH+B7+sAyWksH/atSfmMhVWor3GRIyK99B9m1gp1FCWEPHDi4Ti ehWPwUZX9G+Fx3v4w6+sq10zFHi0VuprV5p/rhrdOvW/wEkZejTaF6Xt8ll+mIWkbXTl BjOuayigSYcKSyaPJvPkUzhkQwwdksIT51ums= MIME-Version: 1.0 Received: by 10.220.158.9 with SMTP id d9mr549415vcx.245.1283406737646; Wed, 01 Sep 2010 22:52:17 -0700 (PDT) Received: by 10.220.90.136 with HTTP; Wed, 1 Sep 2010 22:52:17 -0700 (PDT) Date: Thu, 2 Sep 2010 01:52:17 -0400 Message-ID: Subject: [PATCH] OMAP: Fix TI Innovator 1510/1610 LCD regression From: David Barksdale To: linux-omap@vger.kernel.org Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Thu, 02 Sep 2010 05:52:36 +0000 (UTC) diff --git a/arch/arm/mach-omap1/board-innovator.c b/arch/arm/mach-omap1/board-innovator.c index 3daf87a..2ee8a70 100644 --- a/arch/arm/mach-omap1/board-innovator.c +++ b/arch/arm/mach-omap1/board-innovator.c @@ -423,13 +423,13 @@ static void __init innovator_init(void) #ifdef CONFIG_ARCH_OMAP15XX if (cpu_is_omap1510()) { omap1_usb_init(&innovator1510_usb_config); - innovator_config[1].data = &innovator1510_lcd_config; + innovator_config[0].data = &innovator1510_lcd_config; } #endif #ifdef CONFIG_ARCH_OMAP16XX if (cpu_is_omap1610()) { omap1_usb_init(&h2_usb_config); - innovator_config[1].data = &innovator1610_lcd_config; + innovator_config[0].data = &innovator1610_lcd_config; } #endif omap_board_config = innovator_config;