[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1370080542.29224.28.camel@localhost.localdomain>
Date: Sat, 01 Jun 2013 11:55:42 +0200
From: Thomas Meyer <thomas@...3r.de>
To: netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] netdev: Cocci spatch "ptr_ret.spatch"
Signed-off-by: Thomas Meyer <thomas@...3r.de>
---
diff -u -p a/drivers/net/ethernet/i825xx/82596.c b/drivers/net/ethernet/i825xx/82596.c
--- a/drivers/net/ethernet/i825xx/82596.c
+++ b/drivers/net/ethernet/i825xx/82596.c
@@ -1527,9 +1527,7 @@ int __init init_module(void)
if (debug >= 0)
i596_debug = debug;
dev_82596 = i82596_probe(-1);
- if (IS_ERR(dev_82596))
- return PTR_ERR(dev_82596);
- return 0;
+ return PTR_RET(dev_82596);
}
void __exit cleanup_module(void)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists