chipset: IS_I9XX macro

This isnt useful in IGT, but it will allow us to keep the merge process
with libdrm simpler.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky 2012-12-04 08:38:46 -08:00 committed by Ben Widawsky
parent 41b5fbfd60
commit f20ac4c8a1

View File

@ -301,6 +301,12 @@
IS_GEN6(devid) || \
IS_GEN7(devid))
#define IS_9XX(devid) (IS_GEN3(devid) || \
IS_GEN4(devid) || \
IS_GEN5(devid) || \
IS_GEN6(devid) || \
IS_GEN7(devid))
#define IS_INTEL(devid) (IS_GEN2(devid) || \
IS_GEN3(devid) || \
IS_GEN4(devid) || \