diff options
author | Colin Ian King <[email protected]> | 2019-11-14 17:27:20 +0000 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <[email protected]> | 2020-01-15 17:31:40 +0100 |
commit | 366c5aa18c128966b1768805cb69e40bb92e9664 (patch) | |
tree | ab8131b08c22502b31ab40d5e2cd14817386b71d | |
parent | d3d19d6fc5736a798b118971935ce274f7deaa82 (diff) |
video: hyperv_fb: fix indentation issue
There is a block of statements that are indented
too deeply, remove the extraneous tabs.
Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Michael Kelley <[email protected]>
Cc: "K . Y . Srinivasan" <[email protected]>
Cc: Haiyang Zhang <[email protected]>
Cc: Stephen Hemminger <[email protected]>
Cc: Sasha Levin <[email protected]>
[b.zolnierkie: minor patch summary fixup]
Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/video/fbdev/hyperv_fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/hyperv_fb.c b/drivers/video/fbdev/hyperv_fb.c index afe9fd751cd5..3108a42db777 100644 --- a/drivers/video/fbdev/hyperv_fb.c +++ b/drivers/video/fbdev/hyperv_fb.c @@ -582,8 +582,8 @@ static int synthvid_get_supported_resolution(struct hv_device *hdev) t = wait_for_completion_timeout(&par->wait, VSP_TIMEOUT); if (!t) { pr_err("Time out on waiting resolution response\n"); - ret = -ETIMEDOUT; - goto out; + ret = -ETIMEDOUT; + goto out; } if (msg->resolution_resp.resolution_count == 0) { |