linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Staging: unisys: visorhba: visorhba_main: fixed a coding style issue
@ 2016-05-20 19:00 Rumesh Hapuarachchi
  2016-06-08  5:59 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Rumesh Hapuarachchi @ 2016-05-20 19:00 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-kernel, Rumesh Hapuarachchi

fixed checkpatch.pl warning about 'Prefer 'unsigned int' to bare use of 'unsigned'

Signed-off-by: Rumesh Hapuarahcchi <rehrumesh@gmail.com>
---
 drivers/staging/unisys/visorhba/visorhba_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b/drivers/staging/unisys/visorhba/visorhba_main.c
index 6a4570d..3b69b33 100644
--- a/drivers/staging/unisys/visorhba/visorhba_main.c
+++ b/drivers/staging/unisys/visorhba/visorhba_main.c
@@ -1122,9 +1122,9 @@ static int visorhba_probe(struct visor_device *dev)
 	if (err < 0)
 		goto err_scsi_host_put;
 
-	scsihost->max_id = (unsigned)max.max_id;
-	scsihost->max_lun = (unsigned)max.max_lun;
-	scsihost->cmd_per_lun = (unsigned)max.cmd_per_lun;
+	scsihost->max_id = (unsigned int)max.max_id;
+	scsihost->max_lun = (unsigned int)max.max_lun;
+	scsihost->cmd_per_lun = (unsigned int)max.cmd_per_lun;
 	scsihost->max_sectors =
 	    (unsigned short)(max.max_io_size >> 9);
 	scsihost->sg_tablesize =
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Staging: unisys: visorhba: visorhba_main: fixed a coding style issue
  2016-05-20 19:00 [PATCH] Staging: unisys: visorhba: visorhba_main: fixed a coding style issue Rumesh Hapuarachchi
@ 2016-06-08  5:59 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2016-06-08  5:59 UTC (permalink / raw)
  To: Rumesh Hapuarachchi; +Cc: devel, linux-kernel

On Sat, May 21, 2016 at 12:30:46AM +0530, Rumesh Hapuarachchi wrote:
> fixed checkpatch.pl warning about 'Prefer 'unsigned int' to bare use of 'unsigned'
> 
> Signed-off-by: Rumesh Hapuarahcchi <rehrumesh@gmail.com>
> ---
>  drivers/staging/unisys/visorhba/visorhba_main.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b/drivers/staging/unisys/visorhba/visorhba_main.c
> index 6a4570d..3b69b33 100644
> --- a/drivers/staging/unisys/visorhba/visorhba_main.c
> +++ b/drivers/staging/unisys/visorhba/visorhba_main.c
> @@ -1122,9 +1122,9 @@ static int visorhba_probe(struct visor_device *dev)
>  	if (err < 0)
>  		goto err_scsi_host_put;
>  
> -	scsihost->max_id = (unsigned)max.max_id;
> -	scsihost->max_lun = (unsigned)max.max_lun;
> -	scsihost->cmd_per_lun = (unsigned)max.cmd_per_lun;
> +	scsihost->max_id = (unsigned int)max.max_id;
> +	scsihost->max_lun = (unsigned int)max.max_lun;
> +	scsihost->cmd_per_lun = (unsigned int)max.cmd_per_lun;
>  	scsihost->max_sectors =
>  	    (unsigned short)(max.max_io_size >> 9);
>  	scsihost->sg_tablesize =

Someone else sent this patch for this issue before you did, sorry :(

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-06-08  6:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-20 19:00 [PATCH] Staging: unisys: visorhba: visorhba_main: fixed a coding style issue Rumesh Hapuarachchi
2016-06-08  5:59 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).