Re: [PATCH] iio: frequency: ad9523: use unsigned int rather then bare unsigned

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 14/04/16 16:40, Slawomir Stepien wrote:
> This fix checkpatch warnings:
> 
> WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
> 
> Signed-off-by: Slawomir Stepien <sst@xxxxxxxxx>
Applied to the togreg branch of iio.git

Thanks,

Jonathan
> ---
>  drivers/iio/frequency/ad9523.c | 19 ++++++++++---------
>  1 file changed, 10 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/iio/frequency/ad9523.c b/drivers/iio/frequency/ad9523.c
> index 44a30f2..99eba52 100644
> --- a/drivers/iio/frequency/ad9523.c
> +++ b/drivers/iio/frequency/ad9523.c
> @@ -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;
>  
> 

--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Kernel Development]     [Kernel Announce]     [Kernel Newbies]     [Linux Networking Development]     [Share Photos]     [IDE]     [Security]     [Git]     [Netfilter]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Device Mapper]

  Powered by Linux