i965: Use binary literals counter select.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner
2014-03-03 19:10:44 -08:00
committed by Kenneth Graunke
parent 2bab95973d
commit 730bc124c3
@@ -645,10 +645,10 @@ start_oa_counters(struct brw_context *brw)
case 5:
return; /* Ironlake counters are always running. */
case 6:
counter_format = 1; /* 0b001 */
counter_format = 0b001;
break;
case 7:
counter_format = 5; /* 0b101 */
counter_format = 0b101;
break;
default:
assert(!"Tried to enable OA counters on an unsupported generation.");