i3c/master: simplify the return expression of i3c_hci_remove()
authorMinghao Chi <chi.minghao@zte.com.cn>
Thu, 5 May 2022 02:19:54 +0000 (02:19 +0000)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Tue, 17 May 2022 20:33:43 +0000 (22:33 +0200)
Simplify the return expression.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20220505021954.54524-1-chi.minghao@zte.com.cn
drivers/i3c/master/mipi-i3c-hci/core.c

index 8c01123dc4edcbeafde8684365efa4f64fd04967..6aef5ce43cc1f6f8c5e3eddb90da81d3c7dcb869 100644 (file)
@@ -768,13 +768,8 @@ static int i3c_hci_probe(struct platform_device *pdev)
 static int i3c_hci_remove(struct platform_device *pdev)
 {
        struct i3c_hci *hci = platform_get_drvdata(pdev);
-       int ret;
 
-       ret = i3c_master_unregister(&hci->master);
-       if (ret)
-               return ret;
-
-       return 0;
+       return i3c_master_unregister(&hci->master);
 }
 
 static const __maybe_unused struct of_device_id i3c_hci_of_match[] = {