Commit 7d73e02c authored by Hartmut Knaack's avatar Hartmut Knaack Committed by Jonathan Cameron

iio:accel:stk8312: use appropriate variable types

Adapt some variable types to reduce unnecessary casting.
Signed-off-by: default avatarHartmut Knaack <knaack.h@gmx.de>
Reviewed-by: default avatarTiberiu Breana <tiberiu.a.breana@intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 03ecd50c
...@@ -69,8 +69,8 @@ static const int stk8312_scale_table[][2] = { ...@@ -69,8 +69,8 @@ static const int stk8312_scale_table[][2] = {
}; };
static const struct { static const struct {
u16 val; int val;
u32 val2; int val2;
} stk8312_samp_freq_table[] = { } stk8312_samp_freq_table[] = {
{400, 0}, {200, 0}, {100, 0}, {50, 0}, {25, 0}, {400, 0}, {200, 0}, {100, 0}, {50, 0}, {25, 0},
{12, 500000}, {6, 250000}, {3, 125000} {12, 500000}, {6, 250000}, {3, 125000}
...@@ -103,7 +103,7 @@ static const struct iio_chan_spec stk8312_channels[] = { ...@@ -103,7 +103,7 @@ static const struct iio_chan_spec stk8312_channels[] = {
struct stk8312_data { struct stk8312_data {
struct i2c_client *client; struct i2c_client *client;
struct mutex lock; struct mutex lock;
int range; u8 range;
u8 sample_rate_idx; u8 sample_rate_idx;
u8 mode; u8 mode;
struct iio_trigger *dready_trig; struct iio_trigger *dready_trig;
...@@ -243,7 +243,7 @@ static const struct iio_trigger_ops stk8312_trigger_ops = { ...@@ -243,7 +243,7 @@ static const struct iio_trigger_ops stk8312_trigger_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
static int stk8312_set_sample_rate(struct stk8312_data *data, int rate) static int stk8312_set_sample_rate(struct stk8312_data *data, u8 rate)
{ {
int ret; int ret;
u8 masked_reg; u8 masked_reg;
......
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