2.2.18: e100.c (SuSE 7.1): udelay() used in a wrong way?

Ulrich Windl (Ulrich.Windl@rz.uni-regensburg.de)
Thu, 22 Mar 2001 13:59:35 +0100


/****************************************************************************
* Name: Phy82562EHDelayMilliseconds
*
* Description: Stalls execution for a specified number of milliseconds.
*
* Arguments: Time - milliseconds to delay
*
* Returns: Nothing
*

************************************************************************
***/
void
Phy82562EHDelayMilliseconds(int Time)
{
udelay(Time);
}

AFAIK, udelay() delays microseconds, not milliseconds.

Ulrich

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