Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1738076
| From | Harinath Nampally <harinath922@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/2] iio: accel: mma8452: Fix code style warning for unsigned int declarations |
| Date | 2017-09-23 23:00 +0200 |
| Message-ID | <usZGO-7Ze-17@gated-at.bofh.it> (permalink) |
| References | <usZGN-7Ze-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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(-)
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);
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/2] This patchset is for fixes reported by checkpatch.pl Harinath Nampally <harinath922@gmail.com> - 2017-09-23 23:00 +0200
[PATCH 2/2] iio: accel: mma8452: Fix code style warning for unsigned int declarations Harinath Nampally <harinath922@gmail.com> - 2017-09-23 23:00 +0200
Re: [PATCH 2/2] iio: accel: mma8452: Fix code style warning for unsigned int declarations Jonathan Cameron <jic23@kernel.org> - 2017-09-24 15:20 +0200
csiph-web