Revert "net: return actual error on register_queue_kobjects"

This reverts commit d36a4f4b47.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2014-06-19 18:12:15 -07:00
parent 6f9a093b66
commit 8e4946ccdc
1 changed files with 2 additions and 2 deletions

View File

@ -1200,8 +1200,8 @@ static int register_queue_kobjects(struct net_device *net)
#ifdef CONFIG_SYSFS
net->queues_kset = kset_create_and_add("queues",
NULL, &net->dev.kobj);
if (IS_ERR(net->queues_kset))
return PTR_ERR(net->queues_kset);
if (!net->queues_kset)
return -ENOMEM;
real_rx = net->real_num_rx_queues;
#endif
real_tx = net->real_num_tx_queues;