You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Staging: netlogic: Compress return logic into one line
Simplify function returns by merging assignment and return into
one command line.
Found with Coccinelle
@@
expression e, ret;
@@
-ret =
+return
e;
-return ret;
Signed-off-by: Mihaela Muraru <mihaela.muraru21@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
42178baf4a
commit
1cbe7adb9c
@@ -1007,10 +1007,8 @@ static int xlr_net_probe(struct platform_device *pdev)
|
||||
*/
|
||||
adapter = (struct xlr_adapter *)
|
||||
devm_kzalloc(&pdev->dev, sizeof(*adapter), GFP_KERNEL);
|
||||
if (!adapter) {
|
||||
err = -ENOMEM;
|
||||
return err;
|
||||
}
|
||||
if (!adapter)
|
||||
return -ENOMEM;
|
||||
|
||||
/*
|
||||
* XLR and XLS have 1 and 2 NAE controller respectively
|
||||
|
||||
Reference in New Issue
Block a user