Message ID | 08d98185ff40de1b2183446d6da61fffcafb9b7f.1570367532.git.lorenzo@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | various st_lsm6dsx fixes and missing bits | expand |
On 06/10/2019 15.22, Lorenzo Bianconi wrote: > Add missing kernel doc for st_lsm6dsx_hw data structure > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Reviewed-by: Sean Nyekjaer <sean@geanix.com> > --- > drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > index 5692ea695f04..40532f99ba4b 100644 > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > @@ -345,6 +345,9 @@ struct st_lsm6dsx_sensor { > * @ts_sip: Total number of timestamp samples in a given pattern. > * @sip: Total number of samples (acc/gyro/ts) in a given pattern. > * @buff: Device read buffer. > + * @irq_routing: pointer to interrupt routing configuration. > + * @event_threshold: wakeup event threshold. > + * @enable_event: enabled event bitmask. > * @iio_devs: Pointers to acc/gyro iio_dev instances. > * @settings: Pointer to the specific sensor settings in use. > */ >
On Mon, 7 Oct 2019 09:56:10 +0200 Sean Nyekjaer <sean@geanix.com> wrote: > On 06/10/2019 15.22, Lorenzo Bianconi wrote: > > Add missing kernel doc for st_lsm6dsx_hw data structure > > > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> > Reviewed-by: Sean Nyekjaer <sean@geanix.com> Applied. Thanks, J > > --- > > drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > > index 5692ea695f04..40532f99ba4b 100644 > > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h > > @@ -345,6 +345,9 @@ struct st_lsm6dsx_sensor { > > * @ts_sip: Total number of timestamp samples in a given pattern. > > * @sip: Total number of samples (acc/gyro/ts) in a given pattern. > > * @buff: Device read buffer. > > + * @irq_routing: pointer to interrupt routing configuration. > > + * @event_threshold: wakeup event threshold. > > + * @enable_event: enabled event bitmask. > > * @iio_devs: Pointers to acc/gyro iio_dev instances. > > * @settings: Pointer to the specific sensor settings in use. > > */ > >
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h index 5692ea695f04..40532f99ba4b 100644 --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h @@ -345,6 +345,9 @@ struct st_lsm6dsx_sensor { * @ts_sip: Total number of timestamp samples in a given pattern. * @sip: Total number of samples (acc/gyro/ts) in a given pattern. * @buff: Device read buffer. + * @irq_routing: pointer to interrupt routing configuration. + * @event_threshold: wakeup event threshold. + * @enable_event: enabled event bitmask. * @iio_devs: Pointers to acc/gyro iio_dev instances. * @settings: Pointer to the specific sensor settings in use. */
Add missing kernel doc for st_lsm6dsx_hw data structure Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> --- drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h | 3 +++ 1 file changed, 3 insertions(+)