From patchwork Tue Oct 5 10:43:07 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Hellstrom X-Patchwork-Id: 232081 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o95AltOn004087 for ; Tue, 5 Oct 2010 10:48:15 GMT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7EFA69F38F for ; Tue, 5 Oct 2010 03:47:55 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from smtp-outbound-1.vmware.com (smtp-outbound-1.vmware.com [65.115.85.69]) by gabe.freedesktop.org (Postfix) with ESMTP id EE9059F3B0 for ; Tue, 5 Oct 2010 03:43:35 -0700 (PDT) Received: from mailhost2.vmware.com (mailhost2.vmware.com [10.16.67.167]) by smtp-outbound-1.vmware.com (Postfix) with ESMTP id CF7BED000; Tue, 5 Oct 2010 03:43:35 -0700 (PDT) Received: from localhost.localdomain (sslvpn-dhcp137.eng.vmware.com [10.20.254.137]) by mailhost2.vmware.com (Postfix) with ESMTP id B6AAE8E75C; Tue, 5 Oct 2010 03:43:33 -0700 (PDT) From: Thomas Hellstrom To: airlied@redhat.com Subject: [PATCH 09/11] vmwgfx: Add modinfo version Date: Tue, 5 Oct 2010 12:43:07 +0200 Message-Id: <1286275389-26641-10-git-send-email-thellstrom@vmware.com> X-Mailer: git-send-email 1.6.2.5 In-Reply-To: <1286275389-26641-9-git-send-email-thellstrom@vmware.com> References: <1286275389-26641-1-git-send-email-thellstrom@vmware.com> <1286275389-26641-2-git-send-email-thellstrom@vmware.com> <1286275389-26641-3-git-send-email-thellstrom@vmware.com> <1286275389-26641-4-git-send-email-thellstrom@vmware.com> <1286275389-26641-5-git-send-email-thellstrom@vmware.com> <1286275389-26641-6-git-send-email-thellstrom@vmware.com> <1286275389-26641-7-git-send-email-thellstrom@vmware.com> <1286275389-26641-8-git-send-email-thellstrom@vmware.com> <1286275389-26641-9-git-send-email-thellstrom@vmware.com> Cc: Thomas Hellstrom , dri-devel@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 05 Oct 2010 10:48:15 +0000 (UTC) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 9350d48..131c7f7 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c @@ -944,3 +944,7 @@ module_exit(vmwgfx_exit); MODULE_AUTHOR("VMware Inc. and others"); MODULE_DESCRIPTION("Standalone drm driver for the VMware SVGA device"); MODULE_LICENSE("GPL and additional rights"); +MODULE_VERSION(__stringify(VMWGFX_DRIVER_MAJOR) "." + __stringify(VMWGFX_DRIVER_MINOR) "." + __stringify(VMWGFX_DRIVER_PATCHLEVEL) "." + "0");