1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

Changed __x86__ macro to __i386__

This commit is contained in:
Nick Patavalis
2018-01-28 17:29:44 +02:00
parent 849532b261
commit 07c27c626d

View File

@ -33,7 +33,7 @@
/* Enable by-default for kernels > 2.6.0 on x86 and x86_64 only */
#include <linux/version.h>
#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