search for: b83b822

Displaying 2 results from an estimated 2 matches for "b83b822".

Did you mean: b8368e2
2013 Jul 30
0
[PATCH] nouveau: use uppercase for chipset name
Right now the log will output e.g. NVaa instead of NVAA, which is how we usually talk about it. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- src/nv_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nv_driver.c b/src/nv_driver.c index b83b822..44e7496 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -836,7 +836,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) dev = pNv->dev; pScrn->chipset = malloc(sizeof(char) * 25); - sprintf(pScrn->chipset, "NVIDIA NV%02x", dev->chipset); + sprintf(pScrn->chipset, &quo...
2013 Jul 22
0
[RFC PATCH] Support running nested in a Mir compositor
...#endif +#if DRI2INFOREC_VERSION >= 8 && defined(XMIR) + dri2.version = 8; + dri2.AuthMagic2 = nouveau_dri2_auth_magic; +#endif + #if DRI2INFOREC_VERSION >= 9 dri2.version = 9; dri2.CreateBuffer2 = nouveau_dri2_create_buffer2; diff --git a/src/nv_driver.c b/src/nv_driver.c index b83b822..99bd735 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -226,6 +226,8 @@ NVDriverFunc(ScrnInfoPtr scrn, xorgDriverFuncOp op, void *data) case GET_REQUIRED_HW_INTERFACES: flag = (CARD32 *)data; (*flag) = 0; + if (xorgMir) + *flag |= HW_SKIP_CONSOLE; return TRUE; def...