From: David Miller on
From: Joe Perches <joe(a)perches.com>
Date: Mon, 15 Feb 2010 00:25:12 -0800

> Convert from:
> if (netif_msg_<foo>(priv))
> dev_<level>(dev...
> to
> netif_<level>(priv, foo, dev...
>
> Also convert a few:
>
> if (i < REG_TIMEOUT) {
> etc...
> return ret;
> }
> to
> if (i >= REG_TIMEOUT)
> goto fail;
> etc...
> return ret;
>
> Signed-off-by: Joe Perches <joe(a)perches.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/