summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOded Gabbay <oded.gabbay@amd.com>2014-04-24 14:41:03 +0300
committerOded Gabbay <oded.gabbay@amd.com>2014-05-04 18:44:39 +0300
commit505cc63f35c81aa52e8ad9c87ab629e82b6a0c80 (patch)
treeb629553fe369cb30b44aa6e7b92a57187d83156a
parent3722666d6fe4b4eea7abebc7894c0513e3072050 (diff)
hsa/radeon: Update module information and versionv0.5
Signed-off-by: Oded Gabbay <oded.gabbay@amd.com>
-rw-r--r--drivers/gpu/hsa/radeon/kfd_module.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/drivers/gpu/hsa/radeon/kfd_module.c b/drivers/gpu/hsa/radeon/kfd_module.c
index d420245fac6b..af19de1cf871 100644
--- a/drivers/gpu/hsa/radeon/kfd_module.c
+++ b/drivers/gpu/hsa/radeon/kfd_module.c
@@ -24,11 +24,13 @@
#include <linux/device.h>
#include "kfd_priv.h"
-#define DRIVER_AUTHOR "Andrew Lewycky, Oded Gabbay, Evgeny Pinchuk, others."
+#define KFD_DRIVER_AUTHOR "AMD Inc. and others"
-#define DRIVER_NAME "kfd"
-#define DRIVER_DESC "AMD HSA Kernel Fusion Driver"
-#define DRIVER_DATE "20140127"
+#define KFD_DRIVER_DESC "Standalone HSA driver for AMD's GPUs"
+#define KFD_DRIVER_DATE "20140424"
+#define KFD_DRIVER_MAJOR 0
+#define KFD_DRIVER_MINOR 5
+#define KFD_DRIVER_PATCHLEVEL 0
const struct kfd2kgd_calls *kfd2kgd;
static const struct kgd2kfd_calls kgd2kfd = {
@@ -100,6 +102,9 @@ kfd_module_exit(void)
module_init(kfd_module_init);
module_exit(kfd_module_exit);
-MODULE_AUTHOR(DRIVER_AUTHOR);
-MODULE_DESCRIPTION(DRIVER_DESC);
-MODULE_LICENSE("GPL");
+MODULE_AUTHOR(KFD_DRIVER_AUTHOR);
+MODULE_DESCRIPTION(KFD_DRIVER_DESC);
+MODULE_LICENSE("GPL and additional rights");
+MODULE_VERSION(__stringify(KFD_DRIVER_MAJOR) "."
+ __stringify(KFD_DRIVER_MINOR) "."
+ __stringify(KFD_DRIVER_PATCHLEVEL));