From: Michal MalĂ˝ Date: Sat, 12 Apr 2014 22:18:11 +0000 (+0200) Subject: Fix build on kernel 3.14. (preempt_enable_no_resched() has been made X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=b3f363e089e192743038d12d2d59ba8fa64b88b2;p=omnibook.git Fix build on kernel 3.14. (preempt_enable_no_resched() has been made inaccessible to modules) --- diff --git a/nbsmi.c b/nbsmi.c index 8ce10b9..e97ec4c 100644 --- a/nbsmi.c +++ b/nbsmi.c @@ -121,7 +121,11 @@ static inline u32 ati_do_smi_call(u16 function) : "memory", "ebx", "ecx", "edx", "esi", "edi", "cc"); local_irq_restore(flags); +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0)) + preempt_enable(); +#else preempt_enable_no_resched(); +#endif return retval; } @@ -170,7 +174,11 @@ static inline u32 intel_do_smi_call(u16 function, struct pci_dev *lpc_bridge) outl(state, sci_en); local_irq_restore(flags); +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0)) + preempt_enable(); +#else preempt_enable_no_resched(); +#endif return retval; }