Message ID | 1322698500-29924-3-git-send-email-saaguirre@ti.com (mailing list archive) |
---|---|
State | RFC, archived |
Headers |
Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from <linux-media-owner@vger.kernel.org>) id 1RVuJF-0006xN-HK; Thu, 01 Dec 2011 01:15:30 +0100 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.75/mailfrontend-2) with esmtp id 1RVuJE-0001j2-HB; Thu, 01 Dec 2011 01:15:28 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753252Ab1LAAPS (ORCPT <rfc822;hunold@linuxtv.org> + 4 others); Wed, 30 Nov 2011 19:15:18 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:54062 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752760Ab1LAAPP (ORCPT <rfc822;linux-media@vger.kernel.org>); Wed, 30 Nov 2011 19:15:15 -0500 Received: from dlep33.itg.ti.com ([157.170.170.112]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id pB10F4q5030239 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Nov 2011 18:15:04 -0600 Received: from dlep26.itg.ti.com (smtp-le.itg.ti.com [157.170.170.27]) by dlep33.itg.ti.com (8.13.7/8.13.8) with ESMTP id pB10F3cC016498; Wed, 30 Nov 2011 18:15:04 -0600 (CST) Received: from DLEE74.ent.ti.com (localhost [127.0.0.1]) by dlep26.itg.ti.com (8.13.8/8.13.8) with ESMTP id pB10F3OH029541; Wed, 30 Nov 2011 18:15:03 -0600 (CST) Received: from dlelxv23.itg.ti.com (172.17.1.198) by DLEE74.ent.ti.com (157.170.170.8) with Microsoft SMTP Server id 14.1.323.3; Wed, 30 Nov 2011 18:15:03 -0600 Received: from legion.dal.design.ti.com (legion.dal.design.ti.com [128.247.22.53]) by dlelxv23.itg.ti.com (8.13.8/8.13.8) with ESMTP id pB10F3Zi013160; Wed, 30 Nov 2011 18:15:03 -0600 Received: from localhost (dtx0091359-ubuntu-2.am.dhcp.ti.com [10.247.19.253]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id pB10F3028912; Wed, 30 Nov 2011 18:15:03 -0600 (CST) From: Sergio Aguirre <saaguirre@ti.com> To: <linux-media@vger.kernel.org> CC: <linux-omap@vger.kernel.org>, <laurent.pinchart@ideasonboard.com>, <sakari.ailus@iki.fi>, Sergio Aguirre <saaguirre@ti.com> Subject: [PATCH v2 02/11] mfd: twl6040: Fix wrong TWL6040_GPO3 bitfield value Date: Wed, 30 Nov 2011 18:14:51 -0600 Message-ID: <1322698500-29924-3-git-send-email-saaguirre@ti.com> X-Mailer: git-send-email 1.7.7.4 In-Reply-To: <1322698500-29924-1-git-send-email-saaguirre@ti.com> References: <1322698500-29924-1-git-send-email-saaguirre@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: <linux-media.vger.kernel.org> X-Mailing-List: linux-media@vger.kernel.org X-PMX-Version: 5.6.1.2065439, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2011.12.1.319 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' MULTIPLE_RCPTS 0.1, MSGID_ADDED_BY_MTA 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1000_LESS 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, BODY_SIZE_800_899 0, DATE_TZ_NA 0, __ANY_URI 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __HAS_X_MAILING_LIST 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __MULTIPLE_RCPTS_CC_X2 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __URI_NO_WWW 0, __URI_NS ' X-LSpam-Score: -6.9 (------) X-LSpam-Report: No, score=-6.9 required=5.0 tests=BAYES_00=-1.9, RCVD_IN_DNSWL_HI=-5 autolearn=ham |
Commit Message
Aguirre Rodriguez, Sergio Alberto
Dec. 1, 2011, 12:14 a.m. UTC
The define should be the result of 1 << Bit number.
Bit number for GPOCTL.GPO3 field is 2, which results
in 0x4 value.
Signed-off-by: Sergio Aguirre <saaguirre@ti.com>
---
include/linux/mfd/twl6040.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Comments
Hi Sergio, On Thursday 01 December 2011 01:14:51 Sergio Aguirre wrote: > The define should be the result of 1 << Bit number. > > Bit number for GPOCTL.GPO3 field is 2, which results > in 0x4 value. > > Signed-off-by: Sergio Aguirre <saaguirre@ti.com> > --- > include/linux/mfd/twl6040.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h > index 2463c261..2a7ff16 100644 > --- a/include/linux/mfd/twl6040.h > +++ b/include/linux/mfd/twl6040.h > @@ -142,7 +142,7 @@ > > #define TWL6040_GPO1 0x01 > #define TWL6040_GPO2 0x02 > -#define TWL6040_GPO3 0x03 > +#define TWL6040_GPO3 0x04 What about defining the fields as (1 << x) instead then ? > > /* ACCCTL (0x2D) fields */
Hi Laurent, Thanks for the review. On Thu, Dec 1, 2011 at 11:24 AM, Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote: > Hi Sergio, > > On Thursday 01 December 2011 01:14:51 Sergio Aguirre wrote: >> The define should be the result of 1 << Bit number. >> >> Bit number for GPOCTL.GPO3 field is 2, which results >> in 0x4 value. >> >> Signed-off-by: Sergio Aguirre <saaguirre@ti.com> >> --- >> include/linux/mfd/twl6040.h | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h >> index 2463c261..2a7ff16 100644 >> --- a/include/linux/mfd/twl6040.h >> +++ b/include/linux/mfd/twl6040.h >> @@ -142,7 +142,7 @@ >> >> #define TWL6040_GPO1 0x01 >> #define TWL6040_GPO2 0x02 >> -#define TWL6040_GPO3 0x03 >> +#define TWL6040_GPO3 0x04 > > What about defining the fields as (1 << x) instead then ? I thought about that, but I guess I just wanted to keep it consistent with the rest of the file. Maybe I can create a separate patch for changing all these bitwise flags to use BIT() macros instead. Thanks and Regards, Sergio > >> >> /* ACCCTL (0x2D) fields */ > > -- > Regards, > > Laurent Pinchart -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Sergio, On Thursday 01 December 2011 18:35:20 Aguirre, Sergio wrote: > On Thu, Dec 1, 2011 at 11:24 AM, Laurent Pinchart wrote: > > On Thursday 01 December 2011 01:14:51 Sergio Aguirre wrote: > >> The define should be the result of 1 << Bit number. > >> > >> Bit number for GPOCTL.GPO3 field is 2, which results > >> in 0x4 value. > >> > >> Signed-off-by: Sergio Aguirre <saaguirre@ti.com> > >> --- > >> include/linux/mfd/twl6040.h | 2 +- > >> 1 files changed, 1 insertions(+), 1 deletions(-) > >> > >> diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h > >> index 2463c261..2a7ff16 100644 > >> --- a/include/linux/mfd/twl6040.h > >> +++ b/include/linux/mfd/twl6040.h > >> @@ -142,7 +142,7 @@ > >> > >> #define TWL6040_GPO1 0x01 > >> #define TWL6040_GPO2 0x02 > >> -#define TWL6040_GPO3 0x03 > >> +#define TWL6040_GPO3 0x04 > > > > What about defining the fields as (1 << x) instead then ? > > I thought about that, but I guess I just wanted to keep it consistent with > the rest of the file. I've seen that as well. I'm fine with keeping the above defines if you prefer. > Maybe I can create a separate patch for changing all these bitwise flags to > use BIT() macros instead.
diff --git a/include/linux/mfd/twl6040.h b/include/linux/mfd/twl6040.h index 2463c261..2a7ff16 100644 --- a/include/linux/mfd/twl6040.h +++ b/include/linux/mfd/twl6040.h @@ -142,7 +142,7 @@ #define TWL6040_GPO1 0x01 #define TWL6040_GPO2 0x02 -#define TWL6040_GPO3 0x03 +#define TWL6040_GPO3 0x04 /* ACCCTL (0x2D) fields */