From 07c27c626d868b4d9e6c228772cca297ae57b59a Mon Sep 17 00:00:00 2001 From: Nick Patavalis Date: Sun, 28 Jan 2018 17:29:44 +0200 Subject: [PATCH] Changed __x86__ macro to __i386__ --- custbaud.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custbaud.h b/custbaud.h index c51282b..444953b 100644 --- a/custbaud.h +++ b/custbaud.h @@ -33,7 +33,7 @@ /* Enable by-default for kernels > 2.6.0 on x86 and x86_64 only */ #include #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,0) -#if defined (__x86__) || defined (__x86_64__) || defined (USE_CUSTOM_BAUD) +#if defined (__i386__) || defined (__x86_64__) || defined (USE_CUSTOM_BAUD) #ifndef USE_CUSTOM_BAUD #define USE_CUSTOM_BAUD #endif