diff options
author | Oded Gabbay | 2020-01-07 23:44:32 +0200 |
---|---|---|
committer | Oded Gabbay | 2020-03-24 10:54:16 +0200 |
commit | 7491c036cb7975543139756e9c7d00ea6bdd139d (patch) | |
tree | da987191828fbfb09ab14ccb17dd9f6cd97c5c23 /drivers/misc | |
parent | 1718a45b284d274ebb57ee3998bd535fb9d6c03b (diff) |
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) { |