mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
nvethernet: T26x EQOS changes
1) Added T26X EQOS bring up changes 2) Fixes added during bring up Bug 4639097 Change-Id: I624fc5c2f9ef4304fe2ae1df6905195d7d969c68 Signed-off-by: Mahesh Patil <maheshp@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3152935 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Tested-by: Seema Khowala <seemaj@nvidia.com> Reviewed-by: Narayana Reddy P <narayanr@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
9d4d563987
commit
c765f98235
@@ -89,7 +89,7 @@ empty:
|
||||
*
|
||||
* @param[in] usec: Delay number in micro seconds.
|
||||
*/
|
||||
static void osd_udelay(unsigned long usec)
|
||||
static void osd_udelay(unsigned long long usec)
|
||||
{
|
||||
udelay(usec);
|
||||
}
|
||||
@@ -102,7 +102,7 @@ static void osd_udelay(unsigned long usec)
|
||||
* @param[in] umin: Minimum sleep required in micro seconds.
|
||||
* @param[in] umax: Maximum sleep required in micro seconds.
|
||||
*/
|
||||
static void osd_usleep_range(unsigned long umin, unsigned long umax)
|
||||
static void osd_usleep_range(unsigned long long umin, unsigned long long umax)
|
||||
{
|
||||
usleep_range(umin, umax);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user