Commit 5841b903 authored by Christopher Diaz Riveros's avatar Christopher Diaz Riveros Committed by Greg Kroah-Hartman

staging: net: netlogic: Remove unneeded cast

Fix Coccinelle alert:

drivers/staging//netlogic/xlr_net.c:996:12-30: WARNING: casting value returned by memory allocation function to (struct xlr_adapter *) is useless.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarChristopher Diaz Riveros <chrisadr@gentoo.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 444634f5
...@@ -993,8 +993,7 @@ static int xlr_net_probe(struct platform_device *pdev) ...@@ -993,8 +993,7 @@ static int xlr_net_probe(struct platform_device *pdev)
/* /*
* Allocate our adapter data structure and attach it to the device. * Allocate our adapter data structure and attach it to the device.
*/ */
adapter = (struct xlr_adapter *) adapter = devm_kzalloc(&pdev->dev, sizeof(*adapter), GFP_KERNEL);
devm_kzalloc(&pdev->dev, sizeof(*adapter), GFP_KERNEL);
if (!adapter) if (!adapter)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment