summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_reg.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-04 13:54:44 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-04 13:54:44 +0000
commitb1d293321458ab00cc809aea4a19f46a256a7f98 (patch)
tree7546ff54c480e418e2e8caaeb0a95de658de6331 /src/gallium/drivers/i965/brw_reg.h
parent211d7ab22b13430aaae00a0dfe95492450bcca20 (diff)
i965g: hook up brw_screen.c
Diffstat (limited to 'src/gallium/drivers/i965/brw_reg.h')
-rw-r--r--src/gallium/drivers/i965/brw_reg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/i965/brw_reg.h b/src/gallium/drivers/i965/brw_reg.h
index f428ec9269..a63403b6af 100644
--- a/src/gallium/drivers/i965/brw_reg.h
+++ b/src/gallium/drivers/i965/brw_reg.h
@@ -98,11 +98,11 @@
#define PCI_CHIP_ILM_G 0x0046
struct brw_chipset {
- int pci_id:16;
- int is_965:1;
- int is_igdng:1;
- int is_g4x:1;
- int pad:13;
+ unsigned pci_id:16;
+ unsigned is_965:1;
+ unsigned is_igdng:1;
+ unsigned is_g4x:1;
+ unsigned pad:13;
};