提交 ef8307a2 编写于 作者: I Irina Tirdea 提交者: Jonathan Cameron

iio: accel: mma9553: fix gpio bitnum init value

Initial value of gpio bitnum is set to -1, but
the variable is declared as unsigned.

Use a positive invalid value for initial gpio
bitnum.
Signed-off-by: NIrina Tirdea <irina.tirdea@intel.com>
Suggested-by: NHartmut Knaack <knaack.h@gmx.de>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 334efd07
...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
/* Bitnum used for GPIO configuration = bit number in high status byte */ /* Bitnum used for GPIO configuration = bit number in high status byte */
#define MMA9553_STATUS_TO_BITNUM(bit) (ffs(bit) - 9) #define MMA9553_STATUS_TO_BITNUM(bit) (ffs(bit) - 9)
#define MMA9553_MAX_BITNUM MMA9553_STATUS_TO_BITNUM(BIT(16))
#define MMA9553_DEFAULT_SAMPLE_RATE 30 /* Hz */ #define MMA9553_DEFAULT_SAMPLE_RATE 30 /* Hz */
...@@ -406,8 +407,8 @@ static int mma9553_init(struct mma9553_data *data) ...@@ -406,8 +407,8 @@ static int mma9553_init(struct mma9553_data *data)
} }
data->gpio_bitnum = -1;
/* Reset GPIO */ /* Reset GPIO */
data->gpio_bitnum = MMA9553_MAX_BITNUM;
ret = mma9553_conf_gpio(data); ret = mma9553_conf_gpio(data);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册