diff options
author | Frederik Schwarzer <schwarzerf@gmail.com> | 2008-10-16 13:02:37 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-01-06 05:28:06 -0500 |
commit | 025dfdafe77f20b3890981a394774baab7b9c827 (patch) | |
tree | c4d514990d7a0673df5d32aa11fded95f9644ff0 /drivers/scsi/lpfc | |
parent | 0abb8b6a939b742f273edc68b64dba26c57331bc (diff) |
trivial: fix then -> than typos in comments and documentation
- (better, more, bigger ...) then -> (...) than
Signed-off-by: Frederik Schwarzer <schwarzerf@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi/lpfc')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_hbadisc.c | 4 | ||||
-rw-r--r-- | drivers/scsi/lpfc/lpfc_sli.c | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/scsi/lpfc/lpfc_hbadisc.c b/drivers/scsi/lpfc/lpfc_hbadisc.c index 8c64494444bf..311ed6dea726 100644 --- a/drivers/scsi/lpfc/lpfc_hbadisc.c +++ b/drivers/scsi/lpfc/lpfc_hbadisc.c | |||
@@ -1964,10 +1964,10 @@ lpfc_set_disctmo(struct lpfc_vport *vport) | |||
1964 | uint32_t tmo; | 1964 | uint32_t tmo; |
1965 | 1965 | ||
1966 | if (vport->port_state == LPFC_LOCAL_CFG_LINK) { | 1966 | if (vport->port_state == LPFC_LOCAL_CFG_LINK) { |
1967 | /* For FAN, timeout should be greater then edtov */ | 1967 | /* For FAN, timeout should be greater than edtov */ |
1968 | tmo = (((phba->fc_edtov + 999) / 1000) + 1); | 1968 | tmo = (((phba->fc_edtov + 999) / 1000) + 1); |
1969 | } else { | 1969 | } else { |
1970 | /* Normal discovery timeout should be > then ELS/CT timeout | 1970 | /* Normal discovery timeout should be > than ELS/CT timeout |
1971 | * FC spec states we need 3 * ratov for CT requests | 1971 | * FC spec states we need 3 * ratov for CT requests |
1972 | */ | 1972 | */ |
1973 | tmo = ((phba->fc_ratov * 3) + 3); | 1973 | tmo = ((phba->fc_ratov * 3) + 3); |
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c index 01dfdc8696f8..a36a120561e2 100644 --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c | |||
@@ -420,7 +420,7 @@ lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring) | |||
420 | if (unlikely(pring->local_getidx >= max_cmd_idx)) { | 420 | if (unlikely(pring->local_getidx >= max_cmd_idx)) { |
421 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, | 421 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, |
422 | "0315 Ring %d issue: portCmdGet %d " | 422 | "0315 Ring %d issue: portCmdGet %d " |
423 | "is bigger then cmd ring %d\n", | 423 | "is bigger than cmd ring %d\n", |
424 | pring->ringno, | 424 | pring->ringno, |
425 | pring->local_getidx, max_cmd_idx); | 425 | pring->local_getidx, max_cmd_idx); |
426 | 426 | ||
@@ -1628,12 +1628,12 @@ lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring) | |||
1628 | { | 1628 | { |
1629 | struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno]; | 1629 | struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno]; |
1630 | /* | 1630 | /* |
1631 | * Ring <ringno> handler: portRspPut <portRspPut> is bigger then | 1631 | * Ring <ringno> handler: portRspPut <portRspPut> is bigger than |
1632 | * rsp ring <portRspMax> | 1632 | * rsp ring <portRspMax> |
1633 | */ | 1633 | */ |
1634 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, | 1634 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, |
1635 | "0312 Ring %d handler: portRspPut %d " | 1635 | "0312 Ring %d handler: portRspPut %d " |
1636 | "is bigger then rsp ring %d\n", | 1636 | "is bigger than rsp ring %d\n", |
1637 | pring->ringno, le32_to_cpu(pgp->rspPutInx), | 1637 | pring->ringno, le32_to_cpu(pgp->rspPutInx), |
1638 | pring->numRiocb); | 1638 | pring->numRiocb); |
1639 | 1639 | ||
@@ -2083,12 +2083,12 @@ lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba, | |||
2083 | portRspPut = le32_to_cpu(pgp->rspPutInx); | 2083 | portRspPut = le32_to_cpu(pgp->rspPutInx); |
2084 | if (portRspPut >= portRspMax) { | 2084 | if (portRspPut >= portRspMax) { |
2085 | /* | 2085 | /* |
2086 | * Ring <ringno> handler: portRspPut <portRspPut> is bigger then | 2086 | * Ring <ringno> handler: portRspPut <portRspPut> is bigger than |
2087 | * rsp ring <portRspMax> | 2087 | * rsp ring <portRspMax> |
2088 | */ | 2088 | */ |
2089 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, | 2089 | lpfc_printf_log(phba, KERN_ERR, LOG_SLI, |
2090 | "0303 Ring %d handler: portRspPut %d " | 2090 | "0303 Ring %d handler: portRspPut %d " |
2091 | "is bigger then rsp ring %d\n", | 2091 | "is bigger than rsp ring %d\n", |
2092 | pring->ringno, portRspPut, portRspMax); | 2092 | pring->ringno, portRspPut, portRspMax); |
2093 | 2093 | ||
2094 | phba->link_state = LPFC_HBA_ERROR; | 2094 | phba->link_state = LPFC_HBA_ERROR; |