iio: accel: mma8452: Fix code style warning for unsigned int declarations
Replace 'unsigned' with 'unsigned int' to improve code readability. Issue found by checkpatch. Signed-off-by: Harinath Nampally <harinath922@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
cd327b0047
commit
f8b7b30fb4
|
@ -1088,8 +1088,8 @@ done:
|
|||
}
|
||||
|
||||
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);
|
||||
|
|
Loading…
Reference in New Issue