From: Frank Mori Hess Date: Fri, 23 Mar 2001 02:05:06 +0000 (+0000) Subject: changed includes to prevent multiple definitions of __module_kernel_version and __mod... X-Git-Tag: r0_7_58~35 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=1f5ea84ff2ca9edb7e89180b63325272b2620236;p=comedi.git changed includes to prevent multiple definitions of __module_kernel_version and __module_using_checksums (defined in linux/module.h which is also included by rtl.h) on link to comedi_ksyms.o --- diff --git a/comedi/rt_pend_tq/rt_pend_tq.c b/comedi/rt_pend_tq/rt_pend_tq.c index 7708695d..5f7eef97 100644 --- a/comedi/rt_pend_tq/rt_pend_tq.c +++ b/comedi/rt_pend_tq/rt_pend_tq.c @@ -1,6 +1,5 @@ /* rt_pend_tq.c */ #include -#include #include #include #include "rt_pend_tq.h" @@ -8,11 +7,11 @@ #include #endif #ifdef CONFIG_COMEDI_RTL -#include #include #endif #ifdef standalone +#include #define rt_pend_tq_init init_module #define rt_pend_tq_cleanup cleanup_module #endif