2020-01-07 22:08:49

by Oded Gabbay

[permalink] [raw]
Subject: [PATCH] habanalabs: removing extra ;

There is an extra ; after the end of a function, which needs to be removed

Signed-off-by: Oded Gabbay <[email protected]>
---
drivers/misc/habanalabs/device.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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)
{
--
2.17.1


2020-01-08 07:45:56

by Tomer Tayar

[permalink] [raw]
Subject: RE: [PATCH] habanalabs: removing extra ;

On Wed, Jan 8, 2020 at 0:07, Oded Gabbay <[email protected]> wrote:
> There is an extra ; after the end of a function, which needs to be removed
>
> Signed-off-by: Oded Gabbay <[email protected]>

Reviewed-by: Tomer Tayar <[email protected]>