Re: [PATCH 2/2] staging: silicom: function return fixes

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

 



On Tue, Jul 01, 2014 at 02:33:43PM +0200, Davide Gianforte wrote:
> Function return fixes
> 
> Some functions don't need a temporary variable to store return value.
> 
> Where functions always return 0, changed into void functions.
> 
> Signed-off-by: Davide Gianforte <davide@xxxxxxxxxxxxxx>
> --
> 
>  drivers/staging/silicom/bpctl_mod.c | 62 ++++++++++---------------------------
>  1 file changed, 16 insertions(+), 46 deletions(-)
> 
> diff --git a/drivers/staging/silicom/bpctl_mod.c b/drivers/staging/silicom/bpctl_mod.c
> index 1322437..c9a4c40 100644
> --- a/drivers/staging/silicom/bpctl_mod.c
> +++ b/drivers/staging/silicom/bpctl_mod.c
> @@ -117,7 +117,7 @@ static struct bpctl_dev *get_status_port_fn(struct bpctl_dev *pbpctl_dev);
>  static void if_scan_init(void);
>  
>  static int bypass_proc_create_dev_sd(struct bpctl_dev *pbp_device_block);
> -static int bypass_proc_remove_dev_sd(struct bpctl_dev *pbp_device_block);
> +static void bypass_proc_remove_dev_sd(struct bpctl_dev *pbp_device_block);
>  
>  static int is_bypass_fn(struct bpctl_dev *pbpctl_dev);
>  static int get_dev_idx_bsf(int bus, int slot, int func);
> @@ -1458,9 +1458,8 @@ static int send_wdt_pulse(struct bpctl_dev *pbpctl_dev)
>  static void send_bypass_clear_pulse(struct bpctl_dev *pbpctl_dev,
>  				    unsigned int value)
>  {
> -	uint32_t ctrl_ext = 0;
> +	uint32_t ctrl_ext = BPCTL_READ_REG(pbpctl_dev, CTRL_EXT);
>  
> -	ctrl_ext = BPCTL_READ_REG(pbpctl_dev, CTRL_EXT);

How about just removing the " = 0;" part of the variable definition?
That would be a smaller patch, and still keep everything "clean".

thanks,

greg k-h
_______________________________________________
devel mailing list
devel@xxxxxxxxxxxxxxxxxxxxxx
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel




[Index of Archives]     [Linux Driver Backports]     [DMA Engine]     [Linux GPIO]     [Linux SPI]     [Video for Linux]     [Linux USB Devel]     [Linux Coverity]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]
  Powered by Linux