OSDN Git Service

i965/gen8+: Remove false perf debug message about MOCS
authorBen Widawsky <benjamin.widawsky@intel.com>
Thu, 11 Dec 2014 20:40:20 +0000 (12:40 -0800)
committerBen Widawsky <benjamin.widawsky@intel.com>
Fri, 12 Dec 2014 02:59:38 +0000 (18:59 -0800)
We support MOCS on both gen8 and gen9, so the message seems meaningless. Remove
it to avoid confusion.

Trivial.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/gen8_misc_state.c

index f993650..bd1d5cc 100644 (file)
@@ -32,9 +32,6 @@
 static void upload_state_base_address(struct brw_context *brw)
 {
    uint32_t mocs_wb = brw->gen >= 9 ? SKL_MOCS_WB : BDW_MOCS_WB;
-
-   perf_debug("Missing MOCS setup for STATE_BASE_ADDRESS.");
-
    int pkt_len = brw->gen >= 9 ? 19 : 16;
 
    BEGIN_BATCH(pkt_len);