diff options
author | Oded Gabbay <oded.gabbay@gmail.com> | 2020-01-07 22:44:32 +0100 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2020-03-24 09:54:16 +0100 |
commit | 7491c036cb7975543139756e9c7d00ea6bdd139d (patch) | |
tree | da987191828fbfb09ab14ccb17dd9f6cd97c5c23 /drivers/misc | |
parent | habanalabs: Avoid running restore chunks if no execute chunks (diff) | |
download | linux-7491c036cb7975543139756e9c7d00ea6bdd139d.tar.xz linux-7491c036cb7975543139756e9c7d00ea6bdd139d.zip |
habanalabs: removing extra ;
There is an extra ; after the end of a function, which needs to be removed
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Reviewed-by: Tomer Tayar <ttayar@habana.ai>
Diffstat (limited to 'drivers/misc')
-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 b680b0caa69b..aef4de36b7aa 100644 --- a/drivers/misc/habanalabs/device.c +++ b/drivers/misc/habanalabs/device.c @@ -36,7 +36,7 @@ enum hl_device_status hl_device_status(struct hl_device *hdev) status = HL_DEVICE_STATUS_OPERATIONAL; return status; -}; +} static void hpriv_release(struct kref *ref) { |