search for: 46f809b

Displaying 1 result from an estimated 1 matches for "46f809b".

Did you mean: 46.809
2009 Jun 10
0
[PATCH] Use nanosleep instead of usleep when waiting the hardware.
...(NVReadVgaCrtc(pNv, nv_crtc->head, NV_CIO_CR_MODE_INDEX) & ~0x80); - usleep(10000); + nouveau_usleep(10000); NVWriteVgaCrtc(pNv, nv_crtc->head, NV_CIO_CR_MODE_INDEX, crtc17); NVVgaSeqReset(pNv, nv_crtc->head, false); diff --git a/src/nv_include.h b/src/nv_include.h index 0409c89..46f809b 100644 --- a/src/nv_include.h +++ b/src/nv_include.h @@ -12,6 +12,7 @@ #include <errno.h> #include <unistd.h> #include <stdlib.h> +#include <time.h> /* All drivers should typically include these */ #include "xf86.h" diff --git a/src/nv_output.c b/src/nv_outp...