From patchwork Thu Aug 25 04:04:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kuninori Morimoto X-Patchwork-Id: 1095182 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7P43rBf003241 for ; Thu, 25 Aug 2011 04:04:53 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750745Ab1HYEEw (ORCPT ); Thu, 25 Aug 2011 00:04:52 -0400 Received: from mail-gw0-f46.google.com ([74.125.83.46]:47128 "EHLO mail-gw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750728Ab1HYEEw (ORCPT ); Thu, 25 Aug 2011 00:04:52 -0400 Received: by gwaa12 with SMTP id a12so1423042gwa.19 for ; Wed, 24 Aug 2011 21:04:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=date:sender:message-id:to:cc:in-reply-to:references:from:subject :user-agent:mime-version:content-type; bh=mEs3qIOXvE8pQjXorHtsjnwyDJfDjoSytbN+83JxnqU=; b=UuGozOLd6LlhK4BGjbMeJQhStziIDJMwlDxQpvIDTOePXyHl6QJdSRTeeVSaFHblqq unffyrkMAHqzY6VVFRYtnUax9PgDNNmQ2ncC4Hcb+hXZY4RwRvsplTxEP7tX7ZQo6rDN n+uBLFfnLuYl8eEsDji4aJcEzrMkBS6eSYwdo= Received: by 10.231.29.163 with SMTP id q35mr11672666ibc.74.1314245091570; Wed, 24 Aug 2011 21:04:51 -0700 (PDT) Received: from morimoto-Dell-XPS420.gmail.com (49.14.32.202.bf.2iij.net [202.32.14.49]) by mx.google.com with ESMTPS id b9sm88018ibb.49.2011.08.24.21.04.49 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 24 Aug 2011 21:04:50 -0700 (PDT) Date: Wed, 24 Aug 2011 21:04:50 -0700 (PDT) Message-ID: <871uwauof4.wl%kuninori.morimoto.gx@renesas.com> To: Paul Mundt , Magnus , Guennadi Cc: Linux-SH , Kuninori Morimoto In-Reply-To: <8739gquogt.wl%kuninori.morimoto.gx@renesas.com> References: <8739gquogt.wl%kuninori.morimoto.gx@renesas.com> From: Kuninori Morimoto Subject: [PATCH 1/7] fbdev: sh_mipi_dsi: typo fix of SH_MIPI_DSI_HBPBM User-Agent: SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?ISO-2022-JP-2?B?R29q?= =?ISO-2022-JP-2?B?GyQoRCtXGyhC?=) APEL/10.8 Emacs/23.2 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") 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.6 (demeter2.kernel.org [140.211.167.43]); Thu, 25 Aug 2011 04:04:53 +0000 (UTC) Signed-off-by: Kuninori Morimoto --- drivers/video/sh_mipi_dsi.c | 2 +- include/video/sh_mipi_dsi.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/sh_mipi_dsi.c b/drivers/video/sh_mipi_dsi.c index 24640c8..8f17efc 100644 --- a/drivers/video/sh_mipi_dsi.c +++ b/drivers/video/sh_mipi_dsi.c @@ -317,7 +317,7 @@ static int __init sh_mipi_setup(struct sh_mipi *mipi, */ if (pdata->flags & SH_MIPI_DSI_HSABM) vmctr2 |= 0x20; - if (pdata->flags & SH_MIPI_DSI_HSPBM) + if (pdata->flags & SH_MIPI_DSI_HBPBM) vmctr2 |= 0x10; iowrite32(vmctr2, mipi->linkbase + VMCTR2); diff --git a/include/video/sh_mipi_dsi.h b/include/video/sh_mipi_dsi.h index 6cb95c9..4e2bcb5 100644 --- a/include/video/sh_mipi_dsi.h +++ b/include/video/sh_mipi_dsi.h @@ -28,7 +28,7 @@ enum sh_mipi_dsi_data_fmt { struct sh_mobile_lcdc_chan_cfg; #define SH_MIPI_DSI_HSABM (1 << 0) -#define SH_MIPI_DSI_HSPBM (1 << 1) +#define SH_MIPI_DSI_HBPBM (1 << 1) struct sh_mipi_dsi_info { enum sh_mipi_dsi_data_fmt data_format;