From patchwork Thu Aug 24 07:36:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 13363642 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B12BEC71145 for ; Thu, 24 Aug 2023 07:38:11 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8E4F610E4A3; Thu, 24 Aug 2023 07:38:10 +0000 (UTC) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id F024610E4A1 for ; Thu, 24 Aug 2023 07:38:03 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 743ED65D19; Thu, 24 Aug 2023 07:38:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A7545C433CC; Thu, 24 Aug 2023 07:38:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692862682; bh=8KAGK/pCRryvB+pifyUnHrIVznLi7QuAqCIeWiGv0as=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oUBVB7WSOsWQwTReD7RO4Xdvbtoj3weNATue3V95ZaBQnJBOfR35SOlYfEuG5XK97 q+2Lzv4gyWcINm3BjY4BNu8YQ8I8HZITQhxk4ASCP63PURcotWXoisT29/nd9RFlS8 CH34RY+vKW0T2kkJ1rZ+ArdGYRGHuZfzmLcKsLB4UYjY6drZ0oAv8VuZSFQ6FwyT9t 8VADzfniwV2kJmHARJS7z8aTtoRYeUS1OlHM2lpUlvMO3ODCvjBFOdJUFWdnjZRZ8Y DMTG08cyvgItNohmd8sHYQc0KA7U6yaTes3lRDqEcyDWsady4/uxPfTx74Dy6nCD/b rjVcFEwIQKQ8w== From: Lee Jones To: lee@kernel.org Subject: [PATCH 13/20] drm/tests/drm_kunit_helpers: Correct possible double-entry typo in 'ddrm_kunit_helper_acquire_ctx_alloc' Date: Thu, 24 Aug 2023 08:36:58 +0100 Message-ID: <20230824073710.2677348-14-lee@kernel.org> X-Mailer: git-send-email 2.42.0.rc1.204.g551eb34607-goog In-Reply-To: <20230824073710.2677348-1-lee@kernel.org> References: <20230824073710.2677348-1-lee@kernel.org> MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-kernel@vger.kernel.org, Maxime Ripard , =?utf-8?q?Ma=C3=ADra_Canal?= , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fixes the following W=1 kernel build warning(s): drivers/gpu/drm/tests/drm_kunit_helpers.c:172: warning: expecting prototype for ddrm_kunit_helper_acquire_ctx_alloc(). Prototype was for drm_kunit_helper_acquire_ctx_alloc() instead Signed-off-by: Lee Jones --- Cc: David Airlie Cc: Daniel Vetter Cc: Maxime Ripard Cc: "MaĆ­ra Canal" Cc: dri-devel@lists.freedesktop.org --- drivers/gpu/drm/tests/drm_kunit_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/tests/drm_kunit_helpers.c b/drivers/gpu/drm/tests/drm_kunit_helpers.c index f102c23eee1dd..c1dfbfcaa0001 100644 --- a/drivers/gpu/drm/tests/drm_kunit_helpers.c +++ b/drivers/gpu/drm/tests/drm_kunit_helpers.c @@ -156,7 +156,7 @@ static void action_drm_release_context(void *ptr) } /** - * ddrm_kunit_helper_acquire_ctx_alloc - Allocates an acquire context + * drm_kunit_helper_acquire_ctx_alloc - Allocates an acquire context * @test: The test context object * * Allocates and initializes a modeset acquire context.