public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx
@ 2019-10-25 18:43 James Smart
  2019-10-25 21:34 ` Ewan D. Milne
  2019-10-29  1:49 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: James Smart @ 2019-10-25 18:43 UTC (permalink / raw)
  To: linux-scsi; +Cc: James Smart, Dick Kennedy

convert MAGIC_NUMER_xxx to MAGIC_NUMBER_xxx

Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
Signed-off-by: James Smart <jsmart2021@gmail.com>
---
 drivers/scsi/lpfc/lpfc_hw4.h  | 4 ++--
 drivers/scsi/lpfc/lpfc_init.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc_hw4.h b/drivers/scsi/lpfc/lpfc_hw4.h
index d40bfe5aa21f..9daa2b494b5c 100644
--- a/drivers/scsi/lpfc/lpfc_hw4.h
+++ b/drivers/scsi/lpfc/lpfc_hw4.h
@@ -4822,8 +4822,8 @@ union lpfc_wqe128 {
 	struct send_frame_wqe send_frame;
 };
 
-#define MAGIC_NUMER_G6 0xFEAA0003
-#define MAGIC_NUMER_G7 0xFEAA0005
+#define MAGIC_NUMBER_G6 0xFEAA0003
+#define MAGIC_NUMBER_G7 0xFEAA0005
 
 struct lpfc_grp_hdr {
 	uint32_t size;
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index 686677dd52a4..9536ad3cc4ee 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -12418,9 +12418,9 @@ lpfc_log_write_firmware_error(struct lpfc_hba *phba, uint32_t offset,
 	 */
 	if (offset == ADD_STATUS_FW_NOT_SUPPORTED ||
 	    (phba->pcidev->device == PCI_DEVICE_ID_LANCER_G6_FC &&
-	     magic_number != MAGIC_NUMER_G6) ||
+	     magic_number != MAGIC_NUMBER_G6) ||
 	    (phba->pcidev->device == PCI_DEVICE_ID_LANCER_G7_FC &&
-	     magic_number != MAGIC_NUMER_G7)) {
+	     magic_number != MAGIC_NUMBER_G7)) {
 		lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
 				"3030 This firmware version is not supported on"
 				" this HBA model. Device:%x Magic:%x Type:%x "
-- 
2.13.7


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

* Re: [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx
  2019-10-25 18:43 [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx James Smart
@ 2019-10-25 21:34 ` Ewan D. Milne
  2019-10-29  1:49 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Ewan D. Milne @ 2019-10-25 21:34 UTC (permalink / raw)
  To: James Smart, linux-scsi; +Cc: Dick Kennedy

On Fri, 2019-10-25 at 11:43 -0700, James Smart wrote:
> convert MAGIC_NUMER_xxx to MAGIC_NUMBER_xxx
> 
> Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
> Signed-off-by: James Smart <jsmart2021@gmail.com>
> ---
>  drivers/scsi/lpfc/lpfc_hw4.h  | 4 ++--
>  drivers/scsi/lpfc/lpfc_init.c | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/scsi/lpfc/lpfc_hw4.h b/drivers/scsi/lpfc/lpfc_hw4.h
> index d40bfe5aa21f..9daa2b494b5c 100644
> --- a/drivers/scsi/lpfc/lpfc_hw4.h
> +++ b/drivers/scsi/lpfc/lpfc_hw4.h
> @@ -4822,8 +4822,8 @@ union lpfc_wqe128 {
>  	struct send_frame_wqe send_frame;
>  };
>  
> -#define MAGIC_NUMER_G6 0xFEAA0003
> -#define MAGIC_NUMER_G7 0xFEAA0005
> +#define MAGIC_NUMBER_G6 0xFEAA0003
> +#define MAGIC_NUMBER_G7 0xFEAA0005
>  
>  struct lpfc_grp_hdr {
>  	uint32_t size;
> diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
> index 686677dd52a4..9536ad3cc4ee 100644
> --- a/drivers/scsi/lpfc/lpfc_init.c
> +++ b/drivers/scsi/lpfc/lpfc_init.c
> @@ -12418,9 +12418,9 @@ lpfc_log_write_firmware_error(struct lpfc_hba *phba, uint32_t offset,
>  	 */
>  	if (offset == ADD_STATUS_FW_NOT_SUPPORTED ||
>  	    (phba->pcidev->device == PCI_DEVICE_ID_LANCER_G6_FC &&
> -	     magic_number != MAGIC_NUMER_G6) ||
> +	     magic_number != MAGIC_NUMBER_G6) ||
>  	    (phba->pcidev->device == PCI_DEVICE_ID_LANCER_G7_FC &&
> -	     magic_number != MAGIC_NUMER_G7)) {
> +	     magic_number != MAGIC_NUMBER_G7)) {
>  		lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
>  				"3030 This firmware version is not supported on"
>  				" this HBA model. Device:%x Magic:%x Type:%x "

Reviewed-by: Ewan D. Milne <emilne@redhat.com>


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

* Re: [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx
  2019-10-25 18:43 [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx James Smart
  2019-10-25 21:34 ` Ewan D. Milne
@ 2019-10-29  1:49 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2019-10-29  1:49 UTC (permalink / raw)
  To: James Smart; +Cc: linux-scsi, Dick Kennedy


James,

> convert MAGIC_NUMER_xxx to MAGIC_NUMBER_xxx

Applied to 5.5/scsi-queue, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2019-10-29  1:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-25 18:43 [PATCH] lpfc: fix spelling error in MAGIC_NUMER_xxx James Smart
2019-10-25 21:34 ` Ewan D. Milne
2019-10-29  1:49 ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox