Commit aab498ba authored by Reno Farnesi's avatar Reno Farnesi Committed by Jonathan Cameron

iio: adis16400: Change unsigned to unsigned int

This patch fixes the following checkpatch warnings:

Prefer 'unsigned int' to bare use of 'unsigned
Signed-off-by: default avatarReno Farnesi <nfarnesi4@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 2ff59bf3
...@@ -217,7 +217,7 @@ static int adis16400_set_freq(struct adis16400_state *st, unsigned int freq) ...@@ -217,7 +217,7 @@ static int adis16400_set_freq(struct adis16400_state *st, unsigned int freq)
return adis_write_reg_8(&st->adis, ADIS16400_SMPL_PRD, val); return adis_write_reg_8(&st->adis, ADIS16400_SMPL_PRD, val);
} }
static const unsigned adis16400_3db_divisors[] = { static const unsigned int adis16400_3db_divisors[] = {
[0] = 2, /* Special case */ [0] = 2, /* Special case */
[1] = 6, [1] = 6,
[2] = 12, [2] = 12,
...@@ -890,7 +890,7 @@ static const struct adis_data adis16400_data = { ...@@ -890,7 +890,7 @@ static const struct adis_data adis16400_data = {
static void adis16400_setup_chan_mask(struct adis16400_state *st) static void adis16400_setup_chan_mask(struct adis16400_state *st)
{ {
const struct adis16400_chip_info *chip_info = st->variant; const struct adis16400_chip_info *chip_info = st->variant;
unsigned i; unsigned int i;
for (i = 0; i < chip_info->num_channels; i++) { for (i = 0; i < chip_info->num_channels; i++) {
const struct iio_chan_spec *ch = &chip_info->channels[i]; const struct iio_chan_spec *ch = &chip_info->channels[i];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment