All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hartmut Knaack <knaack.h@gmx.de>
To: Jonathan Cameron <jic23@kernel.org>, linux-iio@vger.kernel.org
Cc: Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald <pmeerw@pmeerw.net>,
	Martin Fuzzey <mfuzzey@parkeon.com>,
	Roberta Dobrescu <roberta.dobrescu@gmail.com>,
	martink@posteo.de
Subject: Re: [PATCH 5/7] iio:accel:mma8452: rework register definitions
Date: Sun, 09 Aug 2015 11:01:24 +0200	[thread overview]
Message-ID: <55C716E4.3070003@gmx.de> (raw)
In-Reply-To: <55C6301A.5050603@kernel.org>

Jonathan Cameron schrieb am 08.08.2015 um 18:36:
> On 02/08/15 21:43, Hartmut Knaack wrote:
>> Rework register definitions to be sorted by register and bit number, with
>> bit definitions cascaded under the appropriate register, use GENMASK for
>> consecutive bitmasks and realign properly.
>>
>> Signed-off-by: Hartmut Knaack <knaack.h@gmx.de>
> Partly a matter of taste, but I like it and it does make things a little
> easier to follow.  I wouldn't advocate bothering to do this for
> all drivers though! (the reordering, the GENMASK stuff is fine everywhere!)

No worries, this was mainly a "while I'm on it, I can get this done, too".
Thanks,
Hartmut

> 
> Applied
> 
> Jonathan
>> ---
>>  drivers/iio/accel/mma8452.c | 93 ++++++++++++++++++++++-----------------------
>>  1 file changed, 45 insertions(+), 48 deletions(-)
>>
>> diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c
>> index 516b6108d5f8..10e9623431e4 100644
>> --- a/drivers/iio/accel/mma8452.c
>> +++ b/drivers/iio/accel/mma8452.c
>> @@ -23,54 +23,51 @@
>>  #include <linux/iio/events.h>
>>  #include <linux/delay.h>
>>  
>> -#define MMA8452_STATUS 0x00
>> -#define MMA8452_OUT_X 0x01 /* MSB first, 12-bit  */
>> -#define MMA8452_OUT_Y 0x03
>> -#define MMA8452_OUT_Z 0x05
>> -#define MMA8452_INT_SRC 0x0c
>> -#define MMA8452_WHO_AM_I 0x0d
>> -#define MMA8452_DATA_CFG 0x0e
>> -#define MMA8452_HP_FILTER_CUTOFF 0x0f
>> -#define MMA8452_HP_FILTER_CUTOFF_SEL_MASK	(BIT(0) | BIT(1))
>> -#define MMA8452_TRANSIENT_CFG 0x1d
>> -#define MMA8452_TRANSIENT_CFG_ELE		BIT(4)
>> -#define MMA8452_TRANSIENT_CFG_CHAN(chan)	BIT(chan + 1)
>> -#define MMA8452_TRANSIENT_CFG_HPF_BYP		BIT(0)
>> -#define MMA8452_TRANSIENT_SRC 0x1e
>> -#define MMA8452_TRANSIENT_SRC_XTRANSE		BIT(1)
>> -#define MMA8452_TRANSIENT_SRC_YTRANSE		BIT(3)
>> -#define MMA8452_TRANSIENT_SRC_ZTRANSE		BIT(5)
>> -#define MMA8452_TRANSIENT_THS 0x1f
>> -#define MMA8452_TRANSIENT_THS_MASK	0x7f
>> -#define MMA8452_TRANSIENT_COUNT 0x20
>> -#define MMA8452_OFF_X 0x2f
>> -#define MMA8452_OFF_Y 0x30
>> -#define MMA8452_OFF_Z 0x31
>> -#define MMA8452_CTRL_REG1 0x2a
>> -#define MMA8452_CTRL_REG2 0x2b
>> -#define MMA8452_CTRL_REG2_RST		BIT(6)
>> -#define MMA8452_CTRL_REG4 0x2d
>> -#define MMA8452_CTRL_REG5 0x2e
>> -
>> -#define MMA8452_MAX_REG 0x31
>> -
>> -#define MMA8452_STATUS_DRDY (BIT(2) | BIT(1) | BIT(0))
>> -
>> -#define MMA8452_CTRL_DR_MASK (BIT(5) | BIT(4) | BIT(3))
>> -#define MMA8452_CTRL_DR_SHIFT 3
>> -#define MMA8452_CTRL_DR_DEFAULT 0x4 /* 50 Hz sample frequency */
>> -#define MMA8452_CTRL_ACTIVE BIT(0)
>> -
>> -#define MMA8452_DATA_CFG_FS_MASK (BIT(1) | BIT(0))
>> -#define MMA8452_DATA_CFG_FS_2G 0
>> -#define MMA8452_DATA_CFG_FS_4G 1
>> -#define MMA8452_DATA_CFG_FS_8G 2
>> -#define MMA8452_DATA_CFG_HPF_MASK BIT(4)
>> -
>> -#define MMA8452_INT_DRDY	BIT(0)
>> -#define MMA8452_INT_TRANS	BIT(5)
>> -
>> -#define MMA8452_DEVICE_ID 0x2a
>> +#define MMA8452_STATUS				0x00
>> +#define  MMA8452_STATUS_DRDY			(BIT(2) | BIT(1) | BIT(0))
>> +#define MMA8452_OUT_X				0x01 /* MSB first, 12-bit  */
>> +#define MMA8452_OUT_Y				0x03
>> +#define MMA8452_OUT_Z				0x05
>> +#define MMA8452_INT_SRC				0x0c
>> +#define MMA8452_WHO_AM_I			0x0d
>> +#define MMA8452_DATA_CFG			0x0e
>> +#define  MMA8452_DATA_CFG_FS_MASK		GENMASK(1, 0)
>> +#define  MMA8452_DATA_CFG_FS_2G			0
>> +#define  MMA8452_DATA_CFG_FS_4G			1
>> +#define  MMA8452_DATA_CFG_FS_8G			2
>> +#define  MMA8452_DATA_CFG_HPF_MASK		BIT(4)
>> +#define MMA8452_HP_FILTER_CUTOFF		0x0f
>> +#define  MMA8452_HP_FILTER_CUTOFF_SEL_MASK	GENMASK(1, 0)
>> +#define MMA8452_TRANSIENT_CFG			0x1d
>> +#define  MMA8452_TRANSIENT_CFG_HPF_BYP		BIT(0)
>> +#define  MMA8452_TRANSIENT_CFG_CHAN(chan)	BIT(chan + 1)
>> +#define  MMA8452_TRANSIENT_CFG_ELE		BIT(4)
>> +#define MMA8452_TRANSIENT_SRC			0x1e
>> +#define  MMA8452_TRANSIENT_SRC_XTRANSE		BIT(1)
>> +#define  MMA8452_TRANSIENT_SRC_YTRANSE		BIT(3)
>> +#define  MMA8452_TRANSIENT_SRC_ZTRANSE		BIT(5)
>> +#define MMA8452_TRANSIENT_THS			0x1f
>> +#define  MMA8452_TRANSIENT_THS_MASK		GENMASK(6, 0)
>> +#define MMA8452_TRANSIENT_COUNT			0x20
>> +#define MMA8452_CTRL_REG1			0x2a
>> +#define  MMA8452_CTRL_ACTIVE			BIT(0)
>> +#define  MMA8452_CTRL_DR_MASK			GENMASK(5, 3)
>> +#define  MMA8452_CTRL_DR_SHIFT			3
>> +#define  MMA8452_CTRL_DR_DEFAULT		0x4 /* 50 Hz sample frequency */
>> +#define MMA8452_CTRL_REG2			0x2b
>> +#define  MMA8452_CTRL_REG2_RST			BIT(6)
>> +#define MMA8452_CTRL_REG4			0x2d
>> +#define MMA8452_CTRL_REG5			0x2e
>> +#define MMA8452_OFF_X				0x2f
>> +#define MMA8452_OFF_Y				0x30
>> +#define MMA8452_OFF_Z				0x31
>> +
>> +#define MMA8452_MAX_REG				0x31
>> +
>> +#define  MMA8452_INT_DRDY			BIT(0)
>> +#define  MMA8452_INT_TRANS			BIT(5)
>> +
>> +#define  MMA8452_DEVICE_ID			0x2a
>>  
>>  struct mma8452_data {
>>  	struct i2c_client *client;
>>
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

  reply	other threads:[~2015-08-09  9:01 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-02 20:43 [PATCH 0/7] mma8452 fixes and cleanup Hartmut Knaack
2015-08-02 20:43 ` [PATCH 1/7] iio:accel:mma8452: fix _get_hp_filter_index Hartmut Knaack
2015-08-08 16:28   ` Jonathan Cameron
2015-08-02 20:43 ` [PATCH 2/7] iio:accel:mma8452: drop double include Hartmut Knaack
2015-08-08 16:28   ` Jonathan Cameron
2015-08-02 20:43 ` [PATCH 3/7] iio:accel:mma8452: pass up real error code Hartmut Knaack
2015-08-08 16:30   ` Jonathan Cameron
2015-08-02 20:43 ` [PATCH 4/7] iio:accel:mma8452: check values to be written Hartmut Knaack
2015-08-08 16:31   ` Jonathan Cameron
2015-08-02 20:43 ` [PATCH 5/7] iio:accel:mma8452: rework register definitions Hartmut Knaack
2015-08-08 16:36   ` Jonathan Cameron
2015-08-09  9:01     ` Hartmut Knaack [this message]
2015-08-02 20:43 ` [PATCH 6/7] iio:accel:mma8452: coding style cleanup Hartmut Knaack
2015-08-08 16:37   ` Jonathan Cameron
2015-08-02 20:43 ` [PATCH 7/7] iio:accel:mma8452: reorder Kconfig entry Hartmut Knaack
2015-08-08 16:38   ` Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55C716E4.3070003@gmx.de \
    --to=knaack.h@gmx.de \
    --cc=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=martink@posteo.de \
    --cc=mfuzzey@parkeon.com \
    --cc=pmeerw@pmeerw.net \
    --cc=roberta.dobrescu@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.