All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: pm8001: clean up various indentation issues
@ 2019-03-17 18:15 ` Colin King
  0 siblings, 0 replies; 6+ messages in thread
From: Colin King @ 2019-03-17 18:15 UTC (permalink / raw)
  To: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There are several lines of code where the indentation is
at an incorrect level; fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/pm8001/pm8001_hwi.c |  8 +++---
 drivers/scsi/pm8001/pm8001_sas.c |  4 +--
 drivers/scsi/pm8001/pm80xx_hwi.c | 44 ++++++++++++++++----------------
 3 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
index d0bb357034d8..e0fee3d91d23 100644
--- a/drivers/scsi/pm8001/pm8001_hwi.c
+++ b/drivers/scsi/pm8001/pm8001_hwi.c
@@ -960,9 +960,9 @@ pm8001_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
 		return -1;
 	}
 	regVal = pm8001_cr32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET);
-		PM8001_INIT_DBG(pm8001_ha,
-				pm8001_printk("GPIO Output Control Register:"
-				" = 0x%x\n", regVal));
+	PM8001_INIT_DBG(pm8001_ha,
+			pm8001_printk("GPIO Output Control Register:"
+			" = 0x%x\n", regVal));
 	/* set GPIO-0 output control to tri-state */
 	regVal &= 0xFFFFFFFC;
 	pm8001_cw32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET, regVal);
@@ -2928,7 +2928,7 @@ mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
 		PM8001_IO_DBG(pm8001_ha, pm8001_printk("IO_SUCCESS\n"));
 		ts->resp = SAS_TASK_COMPLETE;
 		ts->stat = SAM_STAT_GOOD;
-	if (pm8001_dev)
+		if (pm8001_dev)
 			pm8001_dev->running_req--;
 		break;
 	case IO_ABORTED:
diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
index 084f2fcced0a..88eef3b18e41 100644
--- a/drivers/scsi/pm8001/pm8001_sas.c
+++ b/drivers/scsi/pm8001/pm8001_sas.c
@@ -740,8 +740,8 @@ static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
 		wait_for_completion(&task->slow_task->completion);
 		if (pm8001_ha->chip_id != chip_8001) {
 			pm8001_dev->setds_completion = &completion_setstate;
-				PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
-					pm8001_dev, 0x01);
+			PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
+				pm8001_dev, 0x01);
 			wait_for_completion(&completion_setstate);
 		}
 		res = -TMF_RESP_FUNC_FAILED;
diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
index 63e4f7d34d6c..536d2b4384f8 100644
--- a/drivers/scsi/pm8001/pm80xx_hwi.c
+++ b/drivers/scsi/pm8001/pm80xx_hwi.c
@@ -1316,7 +1316,7 @@ pm80xx_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
 
 static void pm80xx_hw_chip_rst(struct pm8001_hba_info *pm8001_ha)
 {
-	 u32 i;
+	u32 i;
 
 	PM8001_INIT_DBG(pm8001_ha,
 		pm8001_printk("chip reset start\n"));
@@ -4381,27 +4381,27 @@ static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
 			sata_cmd.len = cpu_to_le32(task->total_xfer_len);
 			sata_cmd.esgl = 0;
 		}
-			/* scsi cdb */
-			sata_cmd.atapi_scsi_cdb[0] =
-				cpu_to_le32(((task->ata_task.atapi_packet[0]) |
-				(task->ata_task.atapi_packet[1] << 8) |
-				(task->ata_task.atapi_packet[2] << 16) |
-				(task->ata_task.atapi_packet[3] << 24)));
-			sata_cmd.atapi_scsi_cdb[1] =
-				cpu_to_le32(((task->ata_task.atapi_packet[4]) |
-				(task->ata_task.atapi_packet[5] << 8) |
-				(task->ata_task.atapi_packet[6] << 16) |
-				(task->ata_task.atapi_packet[7] << 24)));
-			sata_cmd.atapi_scsi_cdb[2] =
-				cpu_to_le32(((task->ata_task.atapi_packet[8]) |
-				(task->ata_task.atapi_packet[9] << 8) |
-				(task->ata_task.atapi_packet[10] << 16) |
-				(task->ata_task.atapi_packet[11] << 24)));
-			sata_cmd.atapi_scsi_cdb[3] =
-				cpu_to_le32(((task->ata_task.atapi_packet[12]) |
-				(task->ata_task.atapi_packet[13] << 8) |
-				(task->ata_task.atapi_packet[14] << 16) |
-				(task->ata_task.atapi_packet[15] << 24)));
+		/* scsi cdb */
+		sata_cmd.atapi_scsi_cdb[0] =
+			cpu_to_le32(((task->ata_task.atapi_packet[0]) |
+			(task->ata_task.atapi_packet[1] << 8) |
+			(task->ata_task.atapi_packet[2] << 16) |
+			(task->ata_task.atapi_packet[3] << 24)));
+		sata_cmd.atapi_scsi_cdb[1] =
+			cpu_to_le32(((task->ata_task.atapi_packet[4]) |
+			(task->ata_task.atapi_packet[5] << 8) |
+			(task->ata_task.atapi_packet[6] << 16) |
+			(task->ata_task.atapi_packet[7] << 24)));
+		sata_cmd.atapi_scsi_cdb[2] =
+			cpu_to_le32(((task->ata_task.atapi_packet[8]) |
+			(task->ata_task.atapi_packet[9] << 8) |
+			(task->ata_task.atapi_packet[10] << 16) |
+			(task->ata_task.atapi_packet[11] << 24)));
+		sata_cmd.atapi_scsi_cdb[3] =
+			cpu_to_le32(((task->ata_task.atapi_packet[12]) |
+			(task->ata_task.atapi_packet[13] << 8) |
+			(task->ata_task.atapi_packet[14] << 16) |
+			(task->ata_task.atapi_packet[15] << 24)));
 	}
 
 	/* Check for read log for failed drive and return */
-- 
2.20.1


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

* [PATCH] scsi: pm8001: clean up various indentation issues
@ 2019-03-17 18:15 ` Colin King
  0 siblings, 0 replies; 6+ messages in thread
From: Colin King @ 2019-03-17 18:15 UTC (permalink / raw)
  To: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There are several lines of code where the indentation is
at an incorrect level; fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/pm8001/pm8001_hwi.c |  8 +++---
 drivers/scsi/pm8001/pm8001_sas.c |  4 +--
 drivers/scsi/pm8001/pm80xx_hwi.c | 44 ++++++++++++++++----------------
 3 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
index d0bb357034d8..e0fee3d91d23 100644
--- a/drivers/scsi/pm8001/pm8001_hwi.c
+++ b/drivers/scsi/pm8001/pm8001_hwi.c
@@ -960,9 +960,9 @@ pm8001_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
 		return -1;
 	}
 	regVal = pm8001_cr32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET);
-		PM8001_INIT_DBG(pm8001_ha,
-				pm8001_printk("GPIO Output Control Register:"
-				" = 0x%x\n", regVal));
+	PM8001_INIT_DBG(pm8001_ha,
+			pm8001_printk("GPIO Output Control Register:"
+			" = 0x%x\n", regVal));
 	/* set GPIO-0 output control to tri-state */
 	regVal &= 0xFFFFFFFC;
 	pm8001_cw32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET, regVal);
@@ -2928,7 +2928,7 @@ mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
 		PM8001_IO_DBG(pm8001_ha, pm8001_printk("IO_SUCCESS\n"));
 		ts->resp = SAS_TASK_COMPLETE;
 		ts->stat = SAM_STAT_GOOD;
-	if (pm8001_dev)
+		if (pm8001_dev)
 			pm8001_dev->running_req--;
 		break;
 	case IO_ABORTED:
diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
index 084f2fcced0a..88eef3b18e41 100644
--- a/drivers/scsi/pm8001/pm8001_sas.c
+++ b/drivers/scsi/pm8001/pm8001_sas.c
@@ -740,8 +740,8 @@ static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
 		wait_for_completion(&task->slow_task->completion);
 		if (pm8001_ha->chip_id != chip_8001) {
 			pm8001_dev->setds_completion = &completion_setstate;
-				PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
-					pm8001_dev, 0x01);
+			PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
+				pm8001_dev, 0x01);
 			wait_for_completion(&completion_setstate);
 		}
 		res = -TMF_RESP_FUNC_FAILED;
diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
index 63e4f7d34d6c..536d2b4384f8 100644
--- a/drivers/scsi/pm8001/pm80xx_hwi.c
+++ b/drivers/scsi/pm8001/pm80xx_hwi.c
@@ -1316,7 +1316,7 @@ pm80xx_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
 
 static void pm80xx_hw_chip_rst(struct pm8001_hba_info *pm8001_ha)
 {
-	 u32 i;
+	u32 i;
 
 	PM8001_INIT_DBG(pm8001_ha,
 		pm8001_printk("chip reset start\n"));
@@ -4381,27 +4381,27 @@ static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
 			sata_cmd.len = cpu_to_le32(task->total_xfer_len);
 			sata_cmd.esgl = 0;
 		}
-			/* scsi cdb */
-			sata_cmd.atapi_scsi_cdb[0] -				cpu_to_le32(((task->ata_task.atapi_packet[0]) |
-				(task->ata_task.atapi_packet[1] << 8) |
-				(task->ata_task.atapi_packet[2] << 16) |
-				(task->ata_task.atapi_packet[3] << 24)));
-			sata_cmd.atapi_scsi_cdb[1] -				cpu_to_le32(((task->ata_task.atapi_packet[4]) |
-				(task->ata_task.atapi_packet[5] << 8) |
-				(task->ata_task.atapi_packet[6] << 16) |
-				(task->ata_task.atapi_packet[7] << 24)));
-			sata_cmd.atapi_scsi_cdb[2] -				cpu_to_le32(((task->ata_task.atapi_packet[8]) |
-				(task->ata_task.atapi_packet[9] << 8) |
-				(task->ata_task.atapi_packet[10] << 16) |
-				(task->ata_task.atapi_packet[11] << 24)));
-			sata_cmd.atapi_scsi_cdb[3] -				cpu_to_le32(((task->ata_task.atapi_packet[12]) |
-				(task->ata_task.atapi_packet[13] << 8) |
-				(task->ata_task.atapi_packet[14] << 16) |
-				(task->ata_task.atapi_packet[15] << 24)));
+		/* scsi cdb */
+		sata_cmd.atapi_scsi_cdb[0] +			cpu_to_le32(((task->ata_task.atapi_packet[0]) |
+			(task->ata_task.atapi_packet[1] << 8) |
+			(task->ata_task.atapi_packet[2] << 16) |
+			(task->ata_task.atapi_packet[3] << 24)));
+		sata_cmd.atapi_scsi_cdb[1] +			cpu_to_le32(((task->ata_task.atapi_packet[4]) |
+			(task->ata_task.atapi_packet[5] << 8) |
+			(task->ata_task.atapi_packet[6] << 16) |
+			(task->ata_task.atapi_packet[7] << 24)));
+		sata_cmd.atapi_scsi_cdb[2] +			cpu_to_le32(((task->ata_task.atapi_packet[8]) |
+			(task->ata_task.atapi_packet[9] << 8) |
+			(task->ata_task.atapi_packet[10] << 16) |
+			(task->ata_task.atapi_packet[11] << 24)));
+		sata_cmd.atapi_scsi_cdb[3] +			cpu_to_le32(((task->ata_task.atapi_packet[12]) |
+			(task->ata_task.atapi_packet[13] << 8) |
+			(task->ata_task.atapi_packet[14] << 16) |
+			(task->ata_task.atapi_packet[15] << 24)));
 	}
 
 	/* Check for read log for failed drive and return */
-- 
2.20.1

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

* Re: [PATCH] scsi: pm8001: clean up various indentation issues
  2019-03-17 18:15 ` Colin King
@ 2019-03-18 10:41   ` Jinpu Wang
  -1 siblings, 0 replies; 6+ messages in thread
From: Jinpu Wang @ 2019-03-18 10:41 UTC (permalink / raw)
  To: Colin King
  Cc: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, Linux SCSI Mailinglist, kernel-janitors,
	linux-kernel

On Sun, Mar 17, 2019 at 7:15 PM Colin King <colin.king@canonical.com> wrote:
>
> From: Colin Ian King <colin.king@canonical.com>
>
> There are several lines of code where the indentation is
> at an incorrect level; fix these.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>

Thanks, Colin
Jack

> ---
>  drivers/scsi/pm8001/pm8001_hwi.c |  8 +++---
>  drivers/scsi/pm8001/pm8001_sas.c |  4 +--
>  drivers/scsi/pm8001/pm80xx_hwi.c | 44 ++++++++++++++++----------------
>  3 files changed, 28 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
> index d0bb357034d8..e0fee3d91d23 100644
> --- a/drivers/scsi/pm8001/pm8001_hwi.c
> +++ b/drivers/scsi/pm8001/pm8001_hwi.c
> @@ -960,9 +960,9 @@ pm8001_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
>                 return -1;
>         }
>         regVal = pm8001_cr32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET);
> -               PM8001_INIT_DBG(pm8001_ha,
> -                               pm8001_printk("GPIO Output Control Register:"
> -                               " = 0x%x\n", regVal));
> +       PM8001_INIT_DBG(pm8001_ha,
> +                       pm8001_printk("GPIO Output Control Register:"
> +                       " = 0x%x\n", regVal));
>         /* set GPIO-0 output control to tri-state */
>         regVal &= 0xFFFFFFFC;
>         pm8001_cw32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET, regVal);
> @@ -2928,7 +2928,7 @@ mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
>                 PM8001_IO_DBG(pm8001_ha, pm8001_printk("IO_SUCCESS\n"));
>                 ts->resp = SAS_TASK_COMPLETE;
>                 ts->stat = SAM_STAT_GOOD;
> -       if (pm8001_dev)
> +               if (pm8001_dev)
>                         pm8001_dev->running_req--;
>                 break;
>         case IO_ABORTED:
> diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
> index 084f2fcced0a..88eef3b18e41 100644
> --- a/drivers/scsi/pm8001/pm8001_sas.c
> +++ b/drivers/scsi/pm8001/pm8001_sas.c
> @@ -740,8 +740,8 @@ static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
>                 wait_for_completion(&task->slow_task->completion);
>                 if (pm8001_ha->chip_id != chip_8001) {
>                         pm8001_dev->setds_completion = &completion_setstate;
> -                               PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
> -                                       pm8001_dev, 0x01);
> +                       PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
> +                               pm8001_dev, 0x01);
>                         wait_for_completion(&completion_setstate);
>                 }
>                 res = -TMF_RESP_FUNC_FAILED;
> diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
> index 63e4f7d34d6c..536d2b4384f8 100644
> --- a/drivers/scsi/pm8001/pm80xx_hwi.c
> +++ b/drivers/scsi/pm8001/pm80xx_hwi.c
> @@ -1316,7 +1316,7 @@ pm80xx_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
>
>  static void pm80xx_hw_chip_rst(struct pm8001_hba_info *pm8001_ha)
>  {
> -        u32 i;
> +       u32 i;
>
>         PM8001_INIT_DBG(pm8001_ha,
>                 pm8001_printk("chip reset start\n"));
> @@ -4381,27 +4381,27 @@ static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
>                         sata_cmd.len = cpu_to_le32(task->total_xfer_len);
>                         sata_cmd.esgl = 0;
>                 }
> -                       /* scsi cdb */
> -                       sata_cmd.atapi_scsi_cdb[0] =
> -                               cpu_to_le32(((task->ata_task.atapi_packet[0]) |
> -                               (task->ata_task.atapi_packet[1] << 8) |
> -                               (task->ata_task.atapi_packet[2] << 16) |
> -                               (task->ata_task.atapi_packet[3] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[1] =
> -                               cpu_to_le32(((task->ata_task.atapi_packet[4]) |
> -                               (task->ata_task.atapi_packet[5] << 8) |
> -                               (task->ata_task.atapi_packet[6] << 16) |
> -                               (task->ata_task.atapi_packet[7] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[2] =
> -                               cpu_to_le32(((task->ata_task.atapi_packet[8]) |
> -                               (task->ata_task.atapi_packet[9] << 8) |
> -                               (task->ata_task.atapi_packet[10] << 16) |
> -                               (task->ata_task.atapi_packet[11] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[3] =
> -                               cpu_to_le32(((task->ata_task.atapi_packet[12]) |
> -                               (task->ata_task.atapi_packet[13] << 8) |
> -                               (task->ata_task.atapi_packet[14] << 16) |
> -                               (task->ata_task.atapi_packet[15] << 24)));
> +               /* scsi cdb */
> +               sata_cmd.atapi_scsi_cdb[0] =
> +                       cpu_to_le32(((task->ata_task.atapi_packet[0]) |
> +                       (task->ata_task.atapi_packet[1] << 8) |
> +                       (task->ata_task.atapi_packet[2] << 16) |
> +                       (task->ata_task.atapi_packet[3] << 24)));
> +               sata_cmd.atapi_scsi_cdb[1] =
> +                       cpu_to_le32(((task->ata_task.atapi_packet[4]) |
> +                       (task->ata_task.atapi_packet[5] << 8) |
> +                       (task->ata_task.atapi_packet[6] << 16) |
> +                       (task->ata_task.atapi_packet[7] << 24)));
> +               sata_cmd.atapi_scsi_cdb[2] =
> +                       cpu_to_le32(((task->ata_task.atapi_packet[8]) |
> +                       (task->ata_task.atapi_packet[9] << 8) |
> +                       (task->ata_task.atapi_packet[10] << 16) |
> +                       (task->ata_task.atapi_packet[11] << 24)));
> +               sata_cmd.atapi_scsi_cdb[3] =
> +                       cpu_to_le32(((task->ata_task.atapi_packet[12]) |
> +                       (task->ata_task.atapi_packet[13] << 8) |
> +                       (task->ata_task.atapi_packet[14] << 16) |
> +                       (task->ata_task.atapi_packet[15] << 24)));
>         }
>
>         /* Check for read log for failed drive and return */
> --
> 2.20.1
>


-- 
Jack Wang
Linux Kernel Developer

1&1 IONOS Cloud GmbH | Greifswalder Str. 207 | 10405 Berlin | Germany
Phone: +49 30 57700-8042 | Fax: +49 30 57700-8598
E-mail: jinpu.wang@cloud.ionos.com | Web: www.ionos.de


Head Office: Berlin, Germany
District Court Berlin Charlottenburg, Registration number: HRB 125506 B
Executive Management: Christoph Steffens, Matthias Steinberg, Achim Weiss

Member of United Internet

This e-mail may contain confidential and/or privileged information. If
you are not the intended recipient of this e-mail, you are hereby
notified that saving, distribution or use of the content of this
e-mail in any way is prohibited. If you have received this e-mail in
error, please notify the sender and delete the e-mail.

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

* Re: [PATCH] scsi: pm8001: clean up various indentation issues
@ 2019-03-18 10:41   ` Jinpu Wang
  0 siblings, 0 replies; 6+ messages in thread
From: Jinpu Wang @ 2019-03-18 10:41 UTC (permalink / raw)
  To: Colin King
  Cc: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, Linux SCSI Mailinglist, kernel-janitors,
	linux-kernel

On Sun, Mar 17, 2019 at 7:15 PM Colin King <colin.king@canonical.com> wrote:
>
> From: Colin Ian King <colin.king@canonical.com>
>
> There are several lines of code where the indentation is
> at an incorrect level; fix these.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>

Thanks, Colin
Jack

> ---
>  drivers/scsi/pm8001/pm8001_hwi.c |  8 +++---
>  drivers/scsi/pm8001/pm8001_sas.c |  4 +--
>  drivers/scsi/pm8001/pm80xx_hwi.c | 44 ++++++++++++++++----------------
>  3 files changed, 28 insertions(+), 28 deletions(-)
>
> diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c
> index d0bb357034d8..e0fee3d91d23 100644
> --- a/drivers/scsi/pm8001/pm8001_hwi.c
> +++ b/drivers/scsi/pm8001/pm8001_hwi.c
> @@ -960,9 +960,9 @@ pm8001_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
>                 return -1;
>         }
>         regVal = pm8001_cr32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET);
> -               PM8001_INIT_DBG(pm8001_ha,
> -                               pm8001_printk("GPIO Output Control Register:"
> -                               " = 0x%x\n", regVal));
> +       PM8001_INIT_DBG(pm8001_ha,
> +                       pm8001_printk("GPIO Output Control Register:"
> +                       " = 0x%x\n", regVal));
>         /* set GPIO-0 output control to tri-state */
>         regVal &= 0xFFFFFFFC;
>         pm8001_cw32(pm8001_ha, 2, GPIO_GPIO_0_0UTPUT_CTL_OFFSET, regVal);
> @@ -2928,7 +2928,7 @@ mpi_smp_completion(struct pm8001_hba_info *pm8001_ha, void *piomb)
>                 PM8001_IO_DBG(pm8001_ha, pm8001_printk("IO_SUCCESS\n"));
>                 ts->resp = SAS_TASK_COMPLETE;
>                 ts->stat = SAM_STAT_GOOD;
> -       if (pm8001_dev)
> +               if (pm8001_dev)
>                         pm8001_dev->running_req--;
>                 break;
>         case IO_ABORTED:
> diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
> index 084f2fcced0a..88eef3b18e41 100644
> --- a/drivers/scsi/pm8001/pm8001_sas.c
> +++ b/drivers/scsi/pm8001/pm8001_sas.c
> @@ -740,8 +740,8 @@ static int pm8001_exec_internal_tmf_task(struct domain_device *dev,
>                 wait_for_completion(&task->slow_task->completion);
>                 if (pm8001_ha->chip_id != chip_8001) {
>                         pm8001_dev->setds_completion = &completion_setstate;
> -                               PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
> -                                       pm8001_dev, 0x01);
> +                       PM8001_CHIP_DISP->set_dev_state_req(pm8001_ha,
> +                               pm8001_dev, 0x01);
>                         wait_for_completion(&completion_setstate);
>                 }
>                 res = -TMF_RESP_FUNC_FAILED;
> diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c
> index 63e4f7d34d6c..536d2b4384f8 100644
> --- a/drivers/scsi/pm8001/pm80xx_hwi.c
> +++ b/drivers/scsi/pm8001/pm80xx_hwi.c
> @@ -1316,7 +1316,7 @@ pm80xx_chip_soft_rst(struct pm8001_hba_info *pm8001_ha)
>
>  static void pm80xx_hw_chip_rst(struct pm8001_hba_info *pm8001_ha)
>  {
> -        u32 i;
> +       u32 i;
>
>         PM8001_INIT_DBG(pm8001_ha,
>                 pm8001_printk("chip reset start\n"));
> @@ -4381,27 +4381,27 @@ static int pm80xx_chip_sata_req(struct pm8001_hba_info *pm8001_ha,
>                         sata_cmd.len = cpu_to_le32(task->total_xfer_len);
>                         sata_cmd.esgl = 0;
>                 }
> -                       /* scsi cdb */
> -                       sata_cmd.atapi_scsi_cdb[0] > -                               cpu_to_le32(((task->ata_task.atapi_packet[0]) |
> -                               (task->ata_task.atapi_packet[1] << 8) |
> -                               (task->ata_task.atapi_packet[2] << 16) |
> -                               (task->ata_task.atapi_packet[3] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[1] > -                               cpu_to_le32(((task->ata_task.atapi_packet[4]) |
> -                               (task->ata_task.atapi_packet[5] << 8) |
> -                               (task->ata_task.atapi_packet[6] << 16) |
> -                               (task->ata_task.atapi_packet[7] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[2] > -                               cpu_to_le32(((task->ata_task.atapi_packet[8]) |
> -                               (task->ata_task.atapi_packet[9] << 8) |
> -                               (task->ata_task.atapi_packet[10] << 16) |
> -                               (task->ata_task.atapi_packet[11] << 24)));
> -                       sata_cmd.atapi_scsi_cdb[3] > -                               cpu_to_le32(((task->ata_task.atapi_packet[12]) |
> -                               (task->ata_task.atapi_packet[13] << 8) |
> -                               (task->ata_task.atapi_packet[14] << 16) |
> -                               (task->ata_task.atapi_packet[15] << 24)));
> +               /* scsi cdb */
> +               sata_cmd.atapi_scsi_cdb[0] > +                       cpu_to_le32(((task->ata_task.atapi_packet[0]) |
> +                       (task->ata_task.atapi_packet[1] << 8) |
> +                       (task->ata_task.atapi_packet[2] << 16) |
> +                       (task->ata_task.atapi_packet[3] << 24)));
> +               sata_cmd.atapi_scsi_cdb[1] > +                       cpu_to_le32(((task->ata_task.atapi_packet[4]) |
> +                       (task->ata_task.atapi_packet[5] << 8) |
> +                       (task->ata_task.atapi_packet[6] << 16) |
> +                       (task->ata_task.atapi_packet[7] << 24)));
> +               sata_cmd.atapi_scsi_cdb[2] > +                       cpu_to_le32(((task->ata_task.atapi_packet[8]) |
> +                       (task->ata_task.atapi_packet[9] << 8) |
> +                       (task->ata_task.atapi_packet[10] << 16) |
> +                       (task->ata_task.atapi_packet[11] << 24)));
> +               sata_cmd.atapi_scsi_cdb[3] > +                       cpu_to_le32(((task->ata_task.atapi_packet[12]) |
> +                       (task->ata_task.atapi_packet[13] << 8) |
> +                       (task->ata_task.atapi_packet[14] << 16) |
> +                       (task->ata_task.atapi_packet[15] << 24)));
>         }
>
>         /* Check for read log for failed drive and return */
> --
> 2.20.1
>


-- 
Jack Wang
Linux Kernel Developer

1&1 IONOS Cloud GmbH | Greifswalder Str. 207 | 10405 Berlin | Germany
Phone: +49 30 57700-8042 | Fax: +49 30 57700-8598
E-mail: jinpu.wang@cloud.ionos.com | Web: www.ionos.de


Head Office: Berlin, Germany
District Court Berlin Charlottenburg, Registration number: HRB 125506 B
Executive Management: Christoph Steffens, Matthias Steinberg, Achim Weiss

Member of United Internet

This e-mail may contain confidential and/or privileged information. If
you are not the intended recipient of this e-mail, you are hereby
notified that saving, distribution or use of the content of this
e-mail in any way is prohibited. If you have received this e-mail in
error, please notify the sender and delete the e-mail.

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

* Re: [PATCH] scsi: pm8001: clean up various indentation issues
  2019-03-17 18:15 ` Colin King
@ 2019-03-19 18:29   ` Martin K. Petersen
  -1 siblings, 0 replies; 6+ messages in thread
From: Martin K. Petersen @ 2019-03-19 18:29 UTC (permalink / raw)
  To: Colin King
  Cc: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi, kernel-janitors, linux-kernel


Colin,

> There are several lines of code where the indentation is at an
> incorrect level; fix these.

Applied to 5.2/scsi-queue, thanks.

-- 
Martin K. Petersen	Oracle Linux Engineering

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

* Re: [PATCH] scsi: pm8001: clean up various indentation issues
@ 2019-03-19 18:29   ` Martin K. Petersen
  0 siblings, 0 replies; 6+ messages in thread
From: Martin K. Petersen @ 2019-03-19 18:29 UTC (permalink / raw)
  To: Colin King
  Cc: Jack Wang, lindar_liu, James E . J . Bottomley,
	Martin K . Petersen, linux-scsi, kernel-janitors, linux-kernel


Colin,

> There are several lines of code where the indentation is at an
> incorrect level; fix these.

Applied to 5.2/scsi-queue, thanks.

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2019-03-19 18:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-17 18:15 [PATCH] scsi: pm8001: clean up various indentation issues Colin King
2019-03-17 18:15 ` Colin King
2019-03-18 10:41 ` Jinpu Wang
2019-03-18 10:41   ` Jinpu Wang
2019-03-19 18:29 ` Martin K. Petersen
2019-03-19 18:29   ` Martin K. Petersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.