From patchwork Fri Jan 26 11:32:40 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Engestrom X-Patchwork-Id: 10185473 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 5C9F260383 for ; Fri, 26 Jan 2018 11:33:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 47DBD290F6 for ; Fri, 26 Jan 2018 11:33:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3C8CF2911E; Fri, 26 Jan 2018 11:33:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id CE594290F6 for ; Fri, 26 Jan 2018 11:33:10 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EE7BB6E586; Fri, 26 Jan 2018 11:33:07 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by gabe.freedesktop.org (Postfix) with ESMTP id 373CD6E4E5 for ; Fri, 26 Jan 2018 11:32:58 +0000 (UTC) Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Forcepoint Email with ESMTPS id 1DA0E9A0B455E for ; Fri, 26 Jan 2018 11:32:53 +0000 (GMT) Received: from localhost.localdomain (10.60.4.28) by HHMAIL01.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server (TLS) id 14.3.361.1; Fri, 26 Jan 2018 11:32:56 +0000 From: Eric Engestrom To: Subject: [PATCH libdrm 3/7] tests/amdgpu: drop unused variables Date: Fri, 26 Jan 2018 11:32:40 +0000 Message-ID: <20180126113244.26946-3-eric.engestrom@imgtec.com> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180126113244.26946-1-eric.engestrom@imgtec.com> References: <20180126113244.26946-1-eric.engestrom@imgtec.com> MIME-Version: 1.0 X-Originating-IP: [10.60.4.28] X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Eric Engestrom --- tests/amdgpu/amdgpu_test.c | 1 - tests/amdgpu/basic_tests.c | 4 ++-- tests/amdgpu/cs_tests.c | 2 +- tests/amdgpu/deadlock_tests.c | 3 +-- tests/amdgpu/uvd_enc_tests.c | 5 +---- tests/amdgpu/vcn_tests.c | 2 +- tests/amdgpu/vm_tests.c | 4 +--- 7 files changed, 7 insertions(+), 14 deletions(-) diff --git a/tests/amdgpu/amdgpu_test.c b/tests/amdgpu/amdgpu_test.c index 8fa3399a4101ccac3e2c..f28e7c6636e4b644bfd2 100644 --- a/tests/amdgpu/amdgpu_test.c +++ b/tests/amdgpu/amdgpu_test.c @@ -243,7 +243,6 @@ static const char options[] = "hlrps:t:b:d:f"; static int amdgpu_open_devices(int open_render_node) { drmDevicePtr devices[MAX_CARDS_SUPPORTED]; - int ret; int i; int drm_node; int amd_index = 0; diff --git a/tests/amdgpu/basic_tests.c b/tests/amdgpu/basic_tests.c index 6ee0aa3b044aeffc6adf..354b015758559c164415 100644 --- a/tests/amdgpu/basic_tests.c +++ b/tests/amdgpu/basic_tests.c @@ -681,7 +681,7 @@ static void amdgpu_command_submission_compute_nop(void) struct amdgpu_cs_fence fence_status; uint32_t *ptr; uint32_t expired; - int i, r, instance; + int r, instance; amdgpu_bo_list_handle bo_list; amdgpu_va_handle va_handle; struct drm_amdgpu_info_hw_ip info; @@ -1473,7 +1473,7 @@ static void amdgpu_sync_dependency_test(void) struct amdgpu_cs_ib_info ib_info; struct amdgpu_cs_fence fence_status; uint32_t expired; - int i, j, r, instance; + int i, j, r; amdgpu_bo_list_handle bo_list; amdgpu_va_handle va_handle; static uint32_t *ptr; diff --git a/tests/amdgpu/cs_tests.c b/tests/amdgpu/cs_tests.c index 4880b74f8114d02ec1df..a5361cd59457d039dea9 100644 --- a/tests/amdgpu/cs_tests.c +++ b/tests/amdgpu/cs_tests.c @@ -273,7 +273,7 @@ static void amdgpu_cs_uvd_create(void) static void amdgpu_cs_uvd_decode(void) { - const unsigned dpb_size = 15923584, ctx_size = 5287680, dt_size = 737280; + const unsigned dpb_size = 15923584, dt_size = 737280; uint64_t msg_addr, fb_addr, bs_addr, dpb_addr, ctx_addr, dt_addr, it_addr; struct amdgpu_bo_alloc_request req = {0}; amdgpu_bo_handle buf_handle; diff --git a/tests/amdgpu/deadlock_tests.c b/tests/amdgpu/deadlock_tests.c index cd34cdf673a645dbdac0..b38a260fe83d33894003 100644 --- a/tests/amdgpu/deadlock_tests.c +++ b/tests/amdgpu/deadlock_tests.c @@ -109,7 +109,6 @@ CU_BOOL suite_deadlock_tests_enable(void) int suite_deadlock_tests_init(void) { - struct amdgpu_gpu_info gpu_info = {0}; int r; r = amdgpu_device_initialize(drm_amdgpu[0], &major_version, @@ -176,7 +175,7 @@ static void amdgpu_deadlock_helper(unsigned ip_type) struct amdgpu_cs_ib_info ib_info; struct amdgpu_cs_fence fence_status; uint32_t expired; - int i, r, instance; + int i, r; amdgpu_bo_list_handle bo_list; amdgpu_va_handle va_handle; diff --git a/tests/amdgpu/uvd_enc_tests.c b/tests/amdgpu/uvd_enc_tests.c index bed8494a8b666fbda58e..0377c1a5d7e1b789d782 100644 --- a/tests/amdgpu/uvd_enc_tests.c +++ b/tests/amdgpu/uvd_enc_tests.c @@ -247,8 +247,6 @@ static void free_resource(struct amdgpu_uvd_enc_bo *uvd_enc_bo) static void amdgpu_cs_uvd_enc_create(void) { - int len, r; - enc.width = 160; enc.height = 128; @@ -263,7 +261,7 @@ static void check_result(struct amdgpu_uvd_enc *enc) uint64_t sum; uint32_t s = 175602; uint32_t *ptr, size; - int i, j, r; + int j, r; r = amdgpu_bo_cpu_map(enc->fb.handle, (void **)&enc->fb.ptr); CU_ASSERT_EQUAL(r, 0); @@ -470,7 +468,6 @@ static void amdgpu_cs_uvd_enc_encode(void) static void amdgpu_cs_uvd_enc_destroy(void) { - struct amdgpu_uvd_enc_bo sw_ctx; int len, r; num_resources = 0; diff --git a/tests/amdgpu/vcn_tests.c b/tests/amdgpu/vcn_tests.c index 9224bc371a462bea140a..2eb8c4347be094a70958 100644 --- a/tests/amdgpu/vcn_tests.c +++ b/tests/amdgpu/vcn_tests.c @@ -283,7 +283,7 @@ static void amdgpu_cs_vcn_dec_create(void) static void amdgpu_cs_vcn_dec_decode(void) { - const unsigned dpb_size = 15923584, ctx_size = 5287680, dt_size = 737280; + const unsigned dpb_size = 15923584, dt_size = 737280; uint64_t msg_addr, fb_addr, bs_addr, dpb_addr, ctx_addr, dt_addr, it_addr, sum; struct amdgpu_vcn_bo dec_buf; int size, len, i, r; diff --git a/tests/amdgpu/vm_tests.c b/tests/amdgpu/vm_tests.c index 5f1831076ef9c517197f..75fcb2dbb5bc1de0204b 100644 --- a/tests/amdgpu/vm_tests.c +++ b/tests/amdgpu/vm_tests.c @@ -35,7 +35,6 @@ static void amdgpu_vmid_reserve_test(void); int suite_vm_tests_init(void) { - struct amdgpu_gpu_info gpu_info = {0}; int r; r = amdgpu_device_initialize(drm_amdgpu[0], &major_version, @@ -78,10 +77,9 @@ static void amdgpu_vmid_reserve_test(void) struct amdgpu_cs_ib_info ib_info; struct amdgpu_cs_fence fence_status; uint32_t expired, flags; - int i, r, instance; + int i, r; amdgpu_bo_list_handle bo_list; amdgpu_va_handle va_handle; - union drm_amdgpu_vm vm; static uint32_t *ptr; r = amdgpu_cs_ctx_create(device_handle, &context_handle);