On Wed, 9 Jun 2021 10:31:09 +0900 William Breathitt Gray <vilhelm.gray@xxxxxxxxx> wrote: > Add some safety by qualifying the quad8_preset_register_set() function > parameters as const. > > Acked-by: Syed Nayyar Waris <syednwaris@xxxxxxxxx> > Signed-off-by: William Breathitt Gray <vilhelm.gray@xxxxxxxxx> Applied (no clash with patch 4) > --- > drivers/counter/104-quad-8.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/counter/104-quad-8.c b/drivers/counter/104-quad-8.c > index 0fd61cc82d30..51fba8cf9c2a 100644 > --- a/drivers/counter/104-quad-8.c > +++ b/drivers/counter/104-quad-8.c > @@ -632,8 +632,8 @@ static ssize_t quad8_count_preset_read(struct counter_device *counter, > return sprintf(buf, "%u\n", priv->preset[count->id]); > } > > -static void quad8_preset_register_set(struct quad8 *priv, int id, > - unsigned int preset) > +static void quad8_preset_register_set(struct quad8 *const priv, const int id, > + const unsigned int preset) > { > const unsigned int base_offset = priv->base + 2 * id; > int i;