Commit a654c062 authored by Harinath Nampally's avatar Harinath Nampally Committed by Jonathan Cameron

iio: accel: mma8452: Rename config structs for readability

Rename structs holding event configuration registers
to more appropriate names. This naming is consistent
with the event config register names given in the
mma845x and fxls8471 datasheets.
Signed-off-by: default avatarHarinath Nampally <harinath922@gmail.com>
Acked-by: default avatarMartin Kepplinger <martink@posteo.de>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent cc54a660
...@@ -135,7 +135,7 @@ struct mma8452_event_regs { ...@@ -135,7 +135,7 @@ struct mma8452_event_regs {
u8 ev_count; u8 ev_count;
}; };
static const struct mma8452_event_regs ev_regs_accel_falling = { static const struct mma8452_event_regs ff_mt_ev_regs = {
.ev_cfg = MMA8452_FF_MT_CFG, .ev_cfg = MMA8452_FF_MT_CFG,
.ev_cfg_ele = MMA8452_FF_MT_CFG_ELE, .ev_cfg_ele = MMA8452_FF_MT_CFG_ELE,
.ev_cfg_chan_shift = MMA8452_FF_MT_CHAN_SHIFT, .ev_cfg_chan_shift = MMA8452_FF_MT_CHAN_SHIFT,
...@@ -145,7 +145,7 @@ static const struct mma8452_event_regs ev_regs_accel_falling = { ...@@ -145,7 +145,7 @@ static const struct mma8452_event_regs ev_regs_accel_falling = {
.ev_count = MMA8452_FF_MT_COUNT .ev_count = MMA8452_FF_MT_COUNT
}; };
static const struct mma8452_event_regs ev_regs_accel_rising = { static const struct mma8452_event_regs trans_ev_regs = {
.ev_cfg = MMA8452_TRANSIENT_CFG, .ev_cfg = MMA8452_TRANSIENT_CFG,
.ev_cfg_ele = MMA8452_TRANSIENT_CFG_ELE, .ev_cfg_ele = MMA8452_TRANSIENT_CFG_ELE,
.ev_cfg_chan_shift = MMA8452_TRANSIENT_CHAN_SHIFT, .ev_cfg_chan_shift = MMA8452_TRANSIENT_CHAN_SHIFT,
...@@ -777,12 +777,12 @@ static int mma8452_get_event_regs(struct mma8452_data *data, ...@@ -777,12 +777,12 @@ static int mma8452_get_event_regs(struct mma8452_data *data,
& MMA8452_INT_TRANS) && & MMA8452_INT_TRANS) &&
(data->chip_info->enabled_events (data->chip_info->enabled_events
& MMA8452_INT_TRANS)) & MMA8452_INT_TRANS))
*ev_reg = &ev_regs_accel_rising; *ev_reg = &trans_ev_regs;
else else
*ev_reg = &ev_regs_accel_falling; *ev_reg = &ff_mt_ev_regs;
return 0; return 0;
case IIO_EV_DIR_FALLING: case IIO_EV_DIR_FALLING:
*ev_reg = &ev_regs_accel_falling; *ev_reg = &ff_mt_ev_regs;
return 0; return 0;
default: default:
return -EINVAL; return -EINVAL;
......
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