From patchwork Sun Oct 3 04:24:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guennadi Liakhovetski X-Patchwork-Id: 227341 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 o934OcbU009056 for ; Sun, 3 Oct 2010 04:24:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750866Ab0JCEYh (ORCPT ); Sun, 3 Oct 2010 00:24:37 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:47522 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with SMTP id S1750783Ab0JCEYh (ORCPT ); Sun, 3 Oct 2010 00:24:37 -0400 Received: (qmail invoked by alias); 03 Oct 2010 04:24:35 -0000 Received: from p508983DA.dip0.t-ipconnect.de (EHLO axis700.grange) [80.137.131.218] by mail.gmx.net (mp010) with SMTP; 03 Oct 2010 06:24:35 +0200 X-Authenticated: #20450766 X-Provags-ID: V01U2FsdGVkX1/T9qs4fkHTbsluFcSaupOMptLQo8Hr0br86sd5rd rlhQWAc+fVBMts Received: from lyakh (helo=localhost) by axis700.grange with local-esmtp (Exim 4.63) (envelope-from ) id 1P2G7u-00045V-3K for linux-sh@vger.kernel.org; Sun, 03 Oct 2010 06:24:42 +0200 Date: Sun, 3 Oct 2010 06:24:42 +0200 (CEST) From: Guennadi Liakhovetski To: linux-sh@vger.kernel.org Subject: [PATCH] sh: fix an ms7724se compile breakage Message-ID: MIME-Version: 1.0 X-Y-GMX-Trusted: 0 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@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]); Sun, 03 Oct 2010 04:24:39 +0000 (UTC) diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c index 3099c36..fe208d6 100644 --- a/arch/sh/boards/mach-se/7724/setup.c +++ b/arch/sh/boards/mach-se/7724/setup.c @@ -148,14 +148,14 @@ const static struct fb_videomode lcdc_720p_modes[] = { { .name = "LB070WV1", .sync = 0, /* hsync and vsync are active low */ - .xres = 1280; - .yres = 720; - .left_margin = 220; - .right_margin = 110; - .hsync_len = 40; - .upper_margin = 20; - .lower_margin = 5; - .vsync_len = 5; + .xres = 1280, + .yres = 720, + .left_margin = 220, + .right_margin = 110, + .hsync_len = 40, + .upper_margin = 20, + .lower_margin = 5, + .vsync_len = 5, }, }; @@ -163,14 +163,14 @@ const static struct fb_videomode lcdc_vga_modes[] = { { .name = "LB070WV1", .sync = 0, /* hsync and vsync are active low */ - .xres = 640; - .yres = 480; - .left_margin = 105; - .right_margin = 50; - .hsync_len = 96; - .upper_margin = 33; - .lower_margin = 10; - .vsync_len = 2; + .xres = 640, + .yres = 480, + .left_margin = 105, + .right_margin = 50, + .hsync_len = 96, + .upper_margin = 33, + .lower_margin = 10, + .vsync_len = 2, }, };