CVSROOT:        /cvs
Module name:    src
Changes by:     [email protected]    2015/11/12 03:23:08

Modified files:
        sys/arch/armv7/omap: if_cpsw.c 

Log message:
get rid of IFQ_POLL.

IFQ_POLL(&ifp->if_snd, m);
if (m == NULL)
return;
IFQ_DEQUEUE(&ifp->if_snd, m);

is the same as

IFQ_DEQUEUE(&ifp->if_snd, m);
if (m == NULL)
return;

ok mpi@

Reply via email to