Displaying 1 result from an estimated 1 matches for "44e7496".
Did you mean:
44e74867
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, "NVIDIA...