summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2013-07-04 12:02:41 -0700
committerKenneth Graunke <[email protected]>2013-10-13 00:10:43 -0700
commit4a29b9a066737398890755ed9987e49841aac60f (patch)
tree8b289c38959c50354eb5e3395b9c85a6b47ece67 /src/mesa
parent8d4ecbccd6a5608005b5c8f473d9a44dbde0b08d (diff)
i965: Add the family name to the PCI ID table.
I removed this a while ago, since we never used it, but I'm finally resurrecting the idea in the next commits. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/intel_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c
index fa8e70580fc..154b05293fd 100644
--- a/src/mesa/drivers/dri/i965/intel_context.c
+++ b/src/mesa/drivers/dri/i965/intel_context.c
@@ -70,7 +70,7 @@ intelGetString(struct gl_context * ctx, GLenum name)
case GL_RENDERER:
switch (brw->intelScreen->deviceID) {
#undef CHIPSET
-#define CHIPSET(id, str) case id: chipset = str; break;
+#define CHIPSET(id, family, str) case id: chipset = str; break;
#include "pci_ids/i965_pci_ids.h"
default:
chipset = "Unknown Intel Chipset";