diff options
author | Bart Van Assche <[email protected]> | 2017-08-25 13:46:34 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2017-08-25 17:08:08 -0400 |
commit | ed91f7ed38a57df422590b0250ae9ab678197777 (patch) | |
tree | b736d5149be54f7331d760a361d875bc3fa29744 | |
parent | 0624cbb1e2e64ae4d7d55dc81fc39a0af87a2bd7 (diff) |
scsi: sd: Fix indentation
This patch avoids that smatch reports the following:
drivers/scsi/sd.c:3540: sd_suspend_common() warn: inconsistent indenting
Signed-off-by: Bart Van Assche <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Cc: Johannes Thumshirn <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index a88639fbedb3..8b3d7994e182 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -3537,7 +3537,7 @@ static int sd_suspend_common(struct device *dev, bool ignore_stop_errors) * doesn't support sync. There's not much to do and * suspend shouldn't fail. */ - ret = 0; + ret = 0; } } |