From patchwork Thu Mar 17 21:42:25 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Padovan X-Patchwork-Id: 8614331 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 532B39F54C for ; Thu, 17 Mar 2016 21:42:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 86A2120212 for ; Thu, 17 Mar 2016 21:42:42 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id B6AE32014A for ; Thu, 17 Mar 2016 21:42:41 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1225F6EAF7; Thu, 17 Mar 2016 21:42:38 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-yw0-f195.google.com (mail-yw0-f195.google.com [209.85.161.195]) by gabe.freedesktop.org (Postfix) with ESMTPS id 311D96EAF7 for ; Thu, 17 Mar 2016 21:42:35 +0000 (UTC) Received: by mail-yw0-f195.google.com with SMTP id f6so8201303ywa.1 for ; Thu, 17 Mar 2016 14:42:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=wiJc09q1p635FDKlZn2+J/oY3f4lQN6OAXY9FMSJjI8=; b=jj9o30Zeh17VVujKD+W1aUXm6fukacEjM9XZZN7r8U+bUZ9Yz4b813lL7nS+Pfu3bE ZLP/i65gielfJUr1MfXjSqusu5V5c2tR46jkG2wrbXv2UZATtr/OMG1rd57M1ZC1h63f 3L1O55Ia2Izx4sdCTmwubwCJQjUe36svCq37gsZt3ZANgSd2o3G2cUFa0DUnTcNwWYgk IMqE0bjOOBgbT14nwtulX1GW0hKQ9o7jmBnVBs/WuHX6VvH256npNLbnIAIG/iz2Ojey NlUb1N1PbJCkZCQnlLnB0Wt9BtQ5bfMeltB93WZu+fYx/AGRMiPV03mhKXL3mUvAic+R ux1w== X-Gm-Message-State: AD7BkJJ5HUfxbhY1lDtFOKtxhV/8bHpv6e3Bmfe2mrg1OMoK7tcB33SyUQLLTza2iD11aQ== X-Received: by 10.37.230.148 with SMTP id d142mr5480384ybh.52.1458250953508; Thu, 17 Mar 2016 14:42:33 -0700 (PDT) Received: from jade.localdomain ([177.194.47.65]) by smtp.gmail.com with ESMTPSA id u70sm6395245ywu.45.2016.03.17.14.42.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 17 Mar 2016 14:42:32 -0700 (PDT) From: Gustavo Padovan To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm] tests: add virtio_gpu to the driver list Date: Thu, 17 Mar 2016 18:42:25 -0300 Message-Id: <1458250945-11435-1-git-send-email-gustavo@padovan.org> X-Mailer: git-send-email 2.5.0 Cc: Gustavo Padovan X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00, RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Gustavo Padovan modetest was failing to work with driver because it wasn't in the module list. Signed-off-by: Gustavo Padovan --- tests/util/kms.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/util/kms.c b/tests/util/kms.c index ce8aaab..650b23b 100644 --- a/tests/util/kms.c +++ b/tests/util/kms.c @@ -141,6 +141,7 @@ static const char * const modules[] = { "atmel-hlcdc", "fsl-dcu-drm", "vc4", + "virtio_gpu", }; int util_open(const char *device, const char *module)