diff options
author | Keith Whitwell <[email protected]> | 2009-11-04 13:54:44 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-04 13:54:44 +0000 |
commit | b1d293321458ab00cc809aea4a19f46a256a7f98 (patch) | |
tree | 7546ff54c480e418e2e8caaeb0a95de658de6331 /src/gallium/drivers/i965/brw_reg.h | |
parent | 211d7ab22b13430aaae00a0dfe95492450bcca20 (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.h | 10 |
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 f428ec92696..a63403b6afd 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; }; |