Message ID | 1506200190-11115-3-git-send-email-harinath922@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sat, 23 Sep 2017 16:56:30 -0400 Harinath Nampally <harinath922@gmail.com> wrote: > Replace 'unsigned' with 'unsigned int' > to improve code readability. > > Issue found by checkpatch. > > Signed-off-by: Harinath Nampally <harinath922@gmail.com> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/accel/mma8452.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c > index 4a33a26..6194169 100644 > --- a/drivers/iio/accel/mma8452.c > +++ b/drivers/iio/accel/mma8452.c > @@ -1088,8 +1088,8 @@ static irqreturn_t mma8452_trigger_handler(int irq, void *p) > } > > static int mma8452_reg_access_dbg(struct iio_dev *indio_dev, > - unsigned reg, unsigned writeval, > - unsigned *readval) > + unsigned int reg, unsigned int writeval, > + unsigned int *readval) > { > int ret; > struct mma8452_data *data = iio_priv(indio_dev); -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c index 4a33a26..6194169 100644 --- a/drivers/iio/accel/mma8452.c +++ b/drivers/iio/accel/mma8452.c @@ -1088,8 +1088,8 @@ static irqreturn_t mma8452_trigger_handler(int irq, void *p) } static int mma8452_reg_access_dbg(struct iio_dev *indio_dev, - unsigned reg, unsigned writeval, - unsigned *readval) + unsigned int reg, unsigned int writeval, + unsigned int *readval) { int ret; struct mma8452_data *data = iio_priv(indio_dev);
Replace 'unsigned' with 'unsigned int' to improve code readability. Issue found by checkpatch. Signed-off-by: Harinath Nampally <harinath922@gmail.com> --- drivers/iio/accel/mma8452.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)