Commit 2b09b41d authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Jonathan Cameron

iio: accel: bma220: Use BIT() and GENMASK() macros

Code is better to read when numbers of bit are explicitly used.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200831090813.78841-7-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent df9f7d4c
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* Copyright (c) 2016, Intel Corporation. * Copyright (c) 2016, Intel Corporation.
*/ */
#include <linux/bits.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/mod_devicetable.h> #include <linux/mod_devicetable.h>
#include <linux/module.h> #include <linux/module.h>
...@@ -24,8 +25,8 @@ ...@@ -24,8 +25,8 @@
#define BMA220_REG_SUSPEND 0x18 #define BMA220_REG_SUSPEND 0x18
#define BMA220_CHIP_ID 0xDD #define BMA220_CHIP_ID 0xDD
#define BMA220_READ_MASK 0x80 #define BMA220_READ_MASK BIT(7)
#define BMA220_RANGE_MASK 0x03 #define BMA220_RANGE_MASK GENMASK(1, 0)
#define BMA220_DATA_SHIFT 2 #define BMA220_DATA_SHIFT 2
#define BMA220_SUSPEND_SLEEP 0xFF #define BMA220_SUSPEND_SLEEP 0xFF
#define BMA220_SUSPEND_WAKE 0x00 #define BMA220_SUSPEND_WAKE 0x00
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment