diff options
author | Sebastian Herbszt <herbszt@gmx.de> | 2015-08-31 23:48:08 +0300 |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-10-27 03:55:00 +0300 |
commit | 290237d2aa832ec418e9abb229f6869aa8b6dbb5 (patch) | |
tree | 088b70dc871d1aeb3ce8714b372648ec4a62650e | |
parent | 15e3d5a285ab9283136dba34bbf72886d9146706 (diff) | |
download | linux-290237d2aa832ec418e9abb229f6869aa8b6dbb5.tar.xz |
lpfc: fix model description
Remove trailing space from model description.
Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
Signed-off-by: James Smart <james.smart@avagotech.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index f962118da8ed..1992e74ec885 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c @@ -2253,7 +2253,7 @@ lpfc_get_hba_model_desc(struct lpfc_hba *phba, uint8_t *mdp, uint8_t *descp) phba->Port); else if (max_speed == 0) snprintf(descp, 255, - "Emulex %s %s %s ", + "Emulex %s %s %s", m.name, m.bus, m.function); else snprintf(descp, 255, |