From 27cd3793a3a183e4ec70c392f293e840642f2799 Mon Sep 17 00:00:00 2001 From: Tvrtko Ursulin Date: Mon, 9 Apr 2018 17:35:39 +0100 Subject: tools/aubdump: Fix ISO C90 forbids mixed declarations and code warning Back to a clean build with no warnings, at least for me. Signed-off-by: Tvrtko Ursulin Cc: Jordan Justen Cc: Scott D Phillips Reviewed-by: Scott D Phillips --- tools/aubdump.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/aubdump.c b/tools/aubdump.c index 267061b0..2d2b6c60 100644 --- a/tools/aubdump.c +++ b/tools/aubdump.c @@ -394,10 +394,11 @@ gen8_emit_ggtt_pte_for_range(uint64_t start, uint64_t end) entry_addr = start & ~(4096 - 1); do { + uint64_t last_page_entry, num_entries; + page_num = entry_addr >> 21; - uint64_t last_page_entry = - min((page_num + 1) << 21, end_aligned); - uint64_t num_entries = (last_page_entry - entry_addr) >> 12; + last_page_entry = min((page_num + 1) << 21, end_aligned); + num_entries = (last_page_entry - entry_addr) >> 12; mem_trace_memory_write_header_out( entry_addr >> 9, num_entries * GEN8_PTE_SIZE, AUB_MEM_TRACE_MEMORY_ADDRESS_SPACE_GGTT_ENTRY); -- cgit v1.2.3