Commit 977b7e81 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Ben Skeggs
Browse files

drm/nouveau: drop use of DRM_UDELAY



The DRM_UDELAY is a simple wrapper for udealy() and to be consistent
call udelay() direct like in may other places.
This avoids the need to pull in drm_os_linux.h when we later
drop drmP.h uses in nouveau.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Cc: Ben Skeggs <bskeggs@redhat.com>
Cc: nouveau@lists.freedesktop.org
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent fcca420d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ nv50_dma_push_wait(struct nouveau_channel *chan, int count)
		}

		if ((++cnt & 0xff) == 0) {
			DRM_UDELAY(1);
			udelay(1);
			if (cnt > 100000)
				return -EBUSY;
		}