netdev: Remove warning from __netif_schedule().

It isn't helping anything and we aren't going to be able to change all
the drivers that do queue wakeups in strange situations.

Just letting a noop_qdisc get scheduled will work because when
qdisc_run() executes via net_tx_work() it will simply find no packets
pending when it makes the ->dequeue() call in qdisc_restart.

Signed-off-by: David S. Miller <davem@davemloft.net>

-3
-3
net/core/dev.c
··· 1341 1341 1342 1342 void __netif_schedule(struct Qdisc *q) 1343 1343 { 1344 - if (WARN_ON_ONCE(q == &noop_qdisc)) 1345 - return; 1346 - 1347 1344 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state)) { 1348 1345 struct softnet_data *sd; 1349 1346 unsigned long flags;