1
0
Fork 0

gdm72xx: remove unnecessary cast in gdm_wimax.c

This patch removes an unnecessary cast on the return value
of alloc_netdev(), since alloc_netdev() returns a pointer
to the allocated struct net_device anyway.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Xenia Ragiadakou 2013-05-22 18:41:21 +03:00 committed by Greg Kroah-Hartman
parent 631ae9054d
commit 9ef4090385
1 changed files with 1 additions and 2 deletions

View File

@ -939,8 +939,7 @@ int register_wimax_device(struct phy_dev *phy_dev, struct device *pdev)
struct net_device *dev;
int ret;
dev = (struct net_device *)alloc_netdev(sizeof(*nic),
"wm%d", ether_setup);
dev = alloc_netdev(sizeof(*nic), "wm%d", ether_setup);
if (dev == NULL) {
pr_err("alloc_etherdev failed\n");