summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2013-07-29 21:03:54 -0400
committerBen Skeggs <bskeggs@redhat.com>2013-07-30 11:31:19 +1000
commitd7ae886260b480da0ea4cad22eb6f7b7d12f07b0 (patch)
tree145e5823f6ead80654a8a7d0200c3ea0252d5212
parent4492cf90c2a7fe27badf6f3f0f296755a65e1e83 (diff)
downloadxorg-driver-xf86-video-nouveau-d7ae886260b480da0ea4cad22eb6f7b7d12f07b0.tar.gz
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@alum.mit.edu> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--src/nv_driver.c2
1 files changed, 1 insertions, 1 deletions
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 NV%02X", dev->chipset);
xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Chipset: \"%s\"\n", pScrn->chipset);
switch (dev->chipset & 0xf0) {