accel/habanalabs: Remove unnecessary braces from if statement
authorMalkoot Khan <engr.mkhan1990@gmail.com>
Thu, 28 Dec 2023 21:08:58 +0000 (21:08 +0000)
committerOded Gabbay <ogabbay@kernel.org>
Mon, 26 Feb 2024 07:30:40 +0000 (09:30 +0200)
The coding style in the Linux kernel prefers not to use
braces for single-statement if conditions.
This patch removes the unnecessary braces from an if statement
in the file drivers/accel/habanalabs/common/command_submission.c,
which also resolves a coding style warning.

Signed-off-by: Malkoot Khan <engr.mkhan1990@gmail.com>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/accel/habanalabs/common/command_submission.c

index 3aa6eeef443b4174466e8e397e30795da293091a..39e23d625a3cbb6f0508c8df9098d59bfde47930 100644 (file)
@@ -1360,9 +1360,8 @@ static int hl_cs_sanity_checks(struct hl_fpriv *hpriv, union hl_cs_args *args)
                        return -EINVAL;
                }
 
-       if (!hl_device_operational(hdev, &status)) {
+       if (!hl_device_operational(hdev, &status))
                return -EBUSY;
-       }
 
        if ((args->in.cs_flags & HL_CS_FLAGS_STAGED_SUBMISSION) &&
                        !hdev->supports_staged_submission) {