AMD driver issue
#11
If you guys are using kernels later than 3.9.1 there is a patch that must be applied to the driver to properly register with DKMS. With base ubuntu installs, this shouldnt be an issue, but if you run a custom kernel, it most likely will not work. The reason that 12.11b9.4 is working, is because it has the code needed.

Note, this patch is completely unsupported by AMD and might cause testicular cancer, explosive bowel syndrome, and premature hair loss.

Code:
From 848e235831aba4579644993816381f97f30a034c Mon Sep 17 00:00:00 2001
From: Alberto Milone <alberto.milone@canonical.com>
Date: Thu, 19 Dec 2013 12:42:48 +0100
Subject: [PATCH 1/1] kcl_acpi.c: use acpi_tbl_table_handler instead of
acpi_table_handler with Linux >= 3.9.1

---
kcl_acpi.c |    6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/kcl_acpi.c b/kcl_acpi.c
index d875bf9..8c1653a 100755
--- a/kcl_acpi.c
+++ b/kcl_acpi.c
@@ -995,7 +995,11 @@ int ATI_API_CALL KCL_ACPI_ParseTable(char *id, KCL_ACPI_IntCallbackHandle handle
#endif
     {
         return KCL_ACPI_ERROR;
-    }    
+    }
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,1)
+    ((acpi_tbl_table_handler)handler)(hdr);
+#else
     ((acpi_table_handler)handler)(hdr);
+#endif
     return KCL_ACPI_OK;
}
--
1.7.9.5


Messages In This Thread
AMD driver issue - by vrposter - 12-23-2013, 09:30 PM
RE: AMD driver issue - by radix - 12-23-2013, 09:34 PM
RE: AMD driver issue - by vrposter - 12-23-2013, 09:38 PM
RE: AMD driver issue - by vrposter - 12-23-2013, 09:40 PM
RE: AMD driver issue - by radix - 12-24-2013, 01:25 AM
RE: AMD driver issue - by vrposter - 12-24-2013, 02:04 AM
RE: AMD driver issue - by qweasd - 12-24-2013, 09:43 AM
RE: AMD driver issue - by vrposter - 12-26-2013, 07:00 PM
RE: AMD driver issue - by goat - 12-27-2013, 05:43 PM
RE: AMD driver issue - by vrposter - 12-27-2013, 05:56 PM
RE: AMD driver issue - by radix - 12-27-2013, 06:04 PM
RE: AMD driver issue - by vrposter - 12-27-2013, 06:08 PM
RE: AMD driver issue - by radix - 12-27-2013, 06:45 PM
RE: AMD driver issue - by vrposter - 12-27-2013, 07:34 PM
RE: AMD driver issue - by vrposter - 01-04-2014, 08:50 PM
RE: AMD driver issue - by radix - 01-04-2014, 10:41 PM
RE: AMD driver issue - by tuxthepenguin - 01-05-2014, 04:49 PM
RE: AMD driver issue - by The Mechanic - 01-06-2014, 12:04 AM
RE: AMD driver issue - by tuxthepenguin - 01-06-2014, 12:49 PM
RE: AMD driver issue - by tuxthepenguin - 01-06-2014, 01:07 PM
RE: AMD driver issue - by tuxthepenguin - 01-06-2014, 01:22 PM
RE: AMD driver issue - by tuxthepenguin - 01-06-2014, 09:42 PM