aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-05-23 12:12:26 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-23 12:12:26 -0400
commit57d19e80f459dd845fb3cfeba8e6df8471bac142 (patch)
tree8254766715720228db3d50f1ef3c7fe003c06d65 /drivers/scsi/lpfc
parentee9ec4f82049c678373a611ce20ac67fe9ad836e (diff)
parente64851f5a0ad6ec991f74ebb3108c35aa0323d5f (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) b43: fix comment typo reqest -> request Haavard Skinnemoen has left Atmel cris: typo in mach-fs Makefile Kconfig: fix copy/paste-ism for dell-wmi-aio driver doc: timers-howto: fix a typo ("unsgined") perf: Only include annotate.h once in tools/perf/util/ui/browsers/annotate.c md, raid5: Fix spelling error in comment ('Ofcourse' --> 'Of course'). treewide: fix a few typos in comments regulator: change debug statement be consistent with the style of the rest Revert "arm: mach-u300/gpio: Fix mem_region resource size miscalculations" audit: acquire creds selectively to reduce atomic op overhead rtlwifi: don't touch with treewide double semicolon removal treewide: cleanup continuations and remove logging message whitespace ath9k_hw: don't touch with treewide double semicolon removal include/linux/leds-regulator.h: fix syntax in example code tty: fix typo in descripton of tty_termios_encode_baud_rate xtensa: remove obsolete BKL kernel option from defconfig m68k: fix comment typo 'occcured' arch:Kconfig.locks Remove unused config option. treewide: remove extra semicolons ...
Diffstat (limited to 'drivers/scsi/lpfc')
-rw-r--r--drivers/scsi/lpfc/lpfc_attr.c2
-rw-r--r--drivers/scsi/lpfc/lpfc_bsg.c2
-rw-r--r--drivers/scsi/lpfc/lpfc_hw.h2
-rw-r--r--drivers/scsi/lpfc/lpfc_sli.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c
index 17d789325f40..8dcbf8fff673 100644
--- a/drivers/scsi/lpfc/lpfc_attr.c
+++ b/drivers/scsi/lpfc/lpfc_attr.c
@@ -4532,7 +4532,7 @@ lpfc_set_vport_symbolic_name(struct fc_vport *fc_vport)
4532 * 4532 *
4533 * This function is called by the lpfc_get_cfgparam() routine to set the 4533 * This function is called by the lpfc_get_cfgparam() routine to set the
4534 * module lpfc_log_verbose into the @phba cfg_log_verbose for use with 4534 * module lpfc_log_verbose into the @phba cfg_log_verbose for use with
4535 * log messsage according to the module's lpfc_log_verbose parameter setting 4535 * log message according to the module's lpfc_log_verbose parameter setting
4536 * before hba port or vport created. 4536 * before hba port or vport created.
4537 **/ 4537 **/
4538static void 4538static void
diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
index 37e2a1272f86..853e5042f39c 100644
--- a/drivers/scsi/lpfc/lpfc_bsg.c
+++ b/drivers/scsi/lpfc/lpfc_bsg.c
@@ -598,7 +598,7 @@ lpfc_bsg_rport_els(struct fc_bsg_job *job)
598 dd_data->context_un.iocb.cmdiocbq = cmdiocbq; 598 dd_data->context_un.iocb.cmdiocbq = cmdiocbq;
599 dd_data->context_un.iocb.rspiocbq = rspiocbq; 599 dd_data->context_un.iocb.rspiocbq = rspiocbq;
600 dd_data->context_un.iocb.set_job = job; 600 dd_data->context_un.iocb.set_job = job;
601 dd_data->context_un.iocb.bmp = NULL;; 601 dd_data->context_un.iocb.bmp = NULL;
602 dd_data->context_un.iocb.ndlp = ndlp; 602 dd_data->context_un.iocb.ndlp = ndlp;
603 603
604 if (phba->cfg_poll & DISABLE_FCP_RING_INT) { 604 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
diff --git a/drivers/scsi/lpfc/lpfc_hw.h b/drivers/scsi/lpfc/lpfc_hw.h
index 95f11ed79463..86b6f7e6686a 100644
--- a/drivers/scsi/lpfc/lpfc_hw.h
+++ b/drivers/scsi/lpfc/lpfc_hw.h
@@ -1002,7 +1002,7 @@ typedef struct _ELS_PKT { /* Structure is in Big Endian format */
1002#define SLI_MGMT_GRPL 0x102 /* Get registered Port list */ 1002#define SLI_MGMT_GRPL 0x102 /* Get registered Port list */
1003#define SLI_MGMT_GPAT 0x110 /* Get Port attributes */ 1003#define SLI_MGMT_GPAT 0x110 /* Get Port attributes */
1004#define SLI_MGMT_RHBA 0x200 /* Register HBA */ 1004#define SLI_MGMT_RHBA 0x200 /* Register HBA */
1005#define SLI_MGMT_RHAT 0x201 /* Register HBA atttributes */ 1005#define SLI_MGMT_RHAT 0x201 /* Register HBA attributes */
1006#define SLI_MGMT_RPRT 0x210 /* Register Port */ 1006#define SLI_MGMT_RPRT 0x210 /* Register Port */
1007#define SLI_MGMT_RPA 0x211 /* Register Port attributes */ 1007#define SLI_MGMT_RPA 0x211 /* Register Port attributes */
1008#define SLI_MGMT_DHBA 0x300 /* De-register HBA */ 1008#define SLI_MGMT_DHBA 0x300 /* De-register HBA */
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c
index 837d272cb2d6..fd5835e1c039 100644
--- a/drivers/scsi/lpfc/lpfc_sli.c
+++ b/drivers/scsi/lpfc/lpfc_sli.c
@@ -3040,7 +3040,7 @@ lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3040 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq)); 3040 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3041 pring->iocb_continueq_cnt++; 3041 pring->iocb_continueq_cnt++;
3042 3042
3043 /* Now, determine whetehr the list is completed for processing */ 3043 /* Now, determine whether the list is completed for processing */
3044 irsp = &rspiocbp->iocb; 3044 irsp = &rspiocbp->iocb;
3045 if (irsp->ulpLe) { 3045 if (irsp->ulpLe) {
3046 /* 3046 /*