diff options
author | Oded Gabbay <oded.gabbay@gmail.com> | 2019-04-02 14:46:02 +0200 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2019-04-02 14:46:02 +0200 |
commit | a1c92d1c2a67d7b61dd5ed2d3bce810269613d37 (patch) | |
tree | 3b4438ceb6a49436088c1fe042205bd967156510 | |
parent | habanalabs: prevent CPU soft lockup on Palladium (diff) | |
download | linux-a1c92d1c2a67d7b61dd5ed2d3bce810269613d37.tar.xz linux-a1c92d1c2a67d7b61dd5ed2d3bce810269613d37.zip |
habanalabs: remove extra semicolon
This patch removes an extra ; after the closing brackets of a while loop.
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
-rw-r--r-- | drivers/misc/habanalabs/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/habanalabs/device.c b/drivers/misc/habanalabs/device.c index e3797f582436..6cbfd560721e 100644 --- a/drivers/misc/habanalabs/device.c +++ b/drivers/misc/habanalabs/device.c @@ -1044,7 +1044,7 @@ void hl_device_fini(struct hl_device *hdev) WARN(1, "Failed to remove device because reset function did not finish\n"); return; } - }; + } /* Mark device as disabled */ hdev->disabled = true; |