mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
iio: frequency: ad9523: use unsigned int rather then bare unsigned
This fix checkpatch warnings: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Slawomir Stepien <sst@poczta.fm> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
1f0477f183
commit
98a52530ed
@ -284,7 +284,7 @@ struct ad9523_state {
|
||||
} data[2] ____cacheline_aligned;
|
||||
};
|
||||
|
||||
static int ad9523_read(struct iio_dev *indio_dev, unsigned addr)
|
||||
static int ad9523_read(struct iio_dev *indio_dev, unsigned int addr)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
int ret;
|
||||
@ -318,7 +318,8 @@ static int ad9523_read(struct iio_dev *indio_dev, unsigned addr)
|
||||
return ret;
|
||||
};
|
||||
|
||||
static int ad9523_write(struct iio_dev *indio_dev, unsigned addr, unsigned val)
|
||||
static int ad9523_write(struct iio_dev *indio_dev,
|
||||
unsigned int addr, unsigned int val)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
int ret;
|
||||
@ -351,11 +352,11 @@ static int ad9523_io_update(struct iio_dev *indio_dev)
|
||||
}
|
||||
|
||||
static int ad9523_vco_out_map(struct iio_dev *indio_dev,
|
||||
unsigned ch, unsigned out)
|
||||
unsigned int ch, unsigned int out)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
int ret;
|
||||
unsigned mask;
|
||||
unsigned int mask;
|
||||
|
||||
switch (ch) {
|
||||
case 0 ... 3:
|
||||
@ -405,7 +406,7 @@ static int ad9523_vco_out_map(struct iio_dev *indio_dev,
|
||||
}
|
||||
|
||||
static int ad9523_set_clock_provider(struct iio_dev *indio_dev,
|
||||
unsigned ch, unsigned long freq)
|
||||
unsigned int ch, unsigned long freq)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
long tmp1, tmp2;
|
||||
@ -619,7 +620,7 @@ static int ad9523_read_raw(struct iio_dev *indio_dev,
|
||||
long m)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
unsigned code;
|
||||
unsigned int code;
|
||||
int ret;
|
||||
|
||||
mutex_lock(&indio_dev->mlock);
|
||||
@ -655,7 +656,7 @@ static int ad9523_write_raw(struct iio_dev *indio_dev,
|
||||
long mask)
|
||||
{
|
||||
struct ad9523_state *st = iio_priv(indio_dev);
|
||||
unsigned reg;
|
||||
unsigned int reg;
|
||||
int ret, tmp, code;
|
||||
|
||||
mutex_lock(&indio_dev->mlock);
|
||||
@ -709,8 +710,8 @@ out:
|
||||
}
|
||||
|
||||
static int ad9523_reg_access(struct iio_dev *indio_dev,
|
||||
unsigned reg, unsigned writeval,
|
||||
unsigned *readval)
|
||||
unsigned int reg, unsigned int writeval,
|
||||
unsigned int *readval)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user