From patchwork Mon Jul 29 15:27:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liviu Dudau X-Patchwork-Id: 11064049 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A09FF912 for ; Mon, 29 Jul 2019 15:28:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8FA5B27F9F for ; Mon, 29 Jul 2019 15:28:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8371128458; Mon, 29 Jul 2019 15:28:03 +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=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, 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 78B7D27F9F for ; Mon, 29 Jul 2019 15:28:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A9A6F89CF3; Mon, 29 Jul 2019 15:28:00 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from cam-smtp0.cambridge.arm.com (fw-tnat-cam2.arm.com [217.140.106.50]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3132589CF3 for ; Mon, 29 Jul 2019 15:27:59 +0000 (UTC) Received: from e110455-lin.cambridge.arm.com (e110455-lin.cambridge.arm.com [10.2.131.35]) by cam-smtp0.cambridge.arm.com (8.13.8/8.13.8) with ESMTP id x6TFRtPh012226; Mon, 29 Jul 2019 16:27:55 +0100 From: Liviu Dudau To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] tests/util/kms.c: Add module names for Arm display drivers. Date: Mon, 29 Jul 2019 16:27:55 +0100 Message-Id: <20190729152755.11564-1-Liviu.Dudau@arm.com> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 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: , Cc: Liviu Dudau , MaliDP Maintainers Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Liviu Dudau Add the names of the kernel modules for the Arm display drivers so that tests inside libDRM can auto-detect their presence. Signed-off-by: Liviu Dudau --- tests/util/kms.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/util/kms.c b/tests/util/kms.c index dd1bbee3..d3be6c0c 100644 --- a/tests/util/kms.c +++ b/tests/util/kms.c @@ -147,6 +147,9 @@ static const char * const modules[] = { "stm", "sun4i-drm", "armada-drm", + "hdlcd", + "mali-dp", + "komeda", }; int util_open(const char *device, const char *module)