mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-28 10:02:43 +01:00
a2ecab12c1
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
diff -urN tp_smapi-0.40.orig/thinkpad_ec.c tp_smapi-0.40/thinkpad_ec.c
|
|
--- tp_smapi-0.40.orig/thinkpad_ec.c 2008-12-16 08:03:06.000000000 +0300
|
|
+++ tp_smapi-0.40/thinkpad_ec.c 2010-11-22 18:16:54.000000000 +0300
|
|
@@ -88,7 +88,11 @@
|
|
#define TPC_PREFETCH_JUNK (INITIAL_JIFFIES+1) /* Ignore prefetch */
|
|
|
|
/* Locking: */
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
|
|
static DECLARE_MUTEX(thinkpad_ec_mutex);
|
|
+#else
|
|
+static DEFINE_SEMAPHORE(thinkpad_ec_mutex);
|
|
+#endif
|
|
|
|
/* Kludge in case the ACPI DSDT reserves the ports we need. */
|
|
static int force_io; /* Willing to do IO to ports we couldn't reserve? */
|
|
diff -urN tp_smapi-0.40.orig/tp_smapi.c tp_smapi-0.40/tp_smapi.c
|
|
--- tp_smapi-0.40.orig/tp_smapi.c 2008-12-16 08:03:06.000000000 +0300
|
|
+++ tp_smapi-0.40/tp_smapi.c 2010-11-22 18:17:29.000000000 +0300
|
|
@@ -109,7 +109,11 @@
|
|
#define SMAPI_PORT2 0x4F /* fixed port, meaning unclear */
|
|
static unsigned short smapi_port; /* APM control port, normally 0xB2 */
|
|
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
|
|
static DECLARE_MUTEX(smapi_mutex);
|
|
+#else
|
|
+static DEFINE_SEMAPHORE(smapi_mutex);
|
|
+#endif
|
|
|
|
/**
|
|
* find_smapi_port - read SMAPI port from NVRAM
|