scsi: bnx2fc: fix spelling mistake: "Couldnt" -> "Couldn't"
Trivial fix to spelling mistake in error message text. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
3a1d0783ac
commit
ab9dd494eb
1 changed files with 2 additions and 2 deletions
|
@ -1552,7 +1552,7 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
|
||||||
|
|
||||||
rc = bnx2fc_shost_config(lport, parent);
|
rc = bnx2fc_shost_config(lport, parent);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
printk(KERN_ERR PFX "Couldnt configure shost for %s\n",
|
printk(KERN_ERR PFX "Couldn't configure shost for %s\n",
|
||||||
interface->netdev->name);
|
interface->netdev->name);
|
||||||
goto lp_config_err;
|
goto lp_config_err;
|
||||||
}
|
}
|
||||||
|
@ -1560,7 +1560,7 @@ static struct fc_lport *bnx2fc_if_create(struct bnx2fc_interface *interface,
|
||||||
/* Initialize the libfc library */
|
/* Initialize the libfc library */
|
||||||
rc = bnx2fc_libfc_config(lport);
|
rc = bnx2fc_libfc_config(lport);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
printk(KERN_ERR PFX "Couldnt configure libfc\n");
|
printk(KERN_ERR PFX "Couldn't configure libfc\n");
|
||||||
goto shost_err;
|
goto shost_err;
|
||||||
}
|
}
|
||||||
fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
|
fc_host_port_type(lport->host) = FC_PORTTYPE_UNKNOWN;
|
||||||
|
|
Loading…
Reference in a new issue