]> git.neil.brown.name Git - history.git/commitdiff
[IRDA]: Move irda_param related exports out of irsyms.
authorStephen Hemminger <shemminger@osdl.org>
Tue, 9 Mar 2004 05:37:29 +0000 (21:37 -0800)
committerStephen Hemminger <shemminger@osdl.org>
Tue, 9 Mar 2004 05:37:29 +0000 (21:37 -0800)
net/irda/irsyms.c
net/irda/parameters.c

index 4efd94aa54795e8ae31a23eaa6f32571e1f06b2d..5acde94a117e815043d227027ed23f36a71993b8 100644 (file)
@@ -73,11 +73,6 @@ extern int  irlap_driver_rcv(struct sk_buff *, struct net_device *,
 EXPORT_SYMBOL(irda_debug);
 #endif
 EXPORT_SYMBOL(irda_notify_init);
-EXPORT_SYMBOL(irda_param_insert);
-EXPORT_SYMBOL(irda_param_extract);
-EXPORT_SYMBOL(irda_param_extract_all);
-EXPORT_SYMBOL(irda_param_pack);
-EXPORT_SYMBOL(irda_param_unpack);
 
 /* IrLAP */
 
index ae79795b913324ee5dd0d000004d0923e449be47..2136b4441913e85095291d2d6125420b1b6960a5 100644 (file)
@@ -29,6 +29,8 @@
  ********************************************************************/
 
 #include <linux/types.h>
+#include <linux/module.h>
+
 #include <asm/unaligned.h>
 #include <asm/byteorder.h>
 
@@ -393,6 +395,7 @@ int irda_param_pack(__u8 *buf, char *fmt, ...)
 
        return 0;
 }
+EXPORT_SYMBOL(irda_param_pack);
 
 /*
  * Function irda_param_unpack (skb, fmt, ...)
@@ -437,6 +440,7 @@ int irda_param_unpack(__u8 *buf, char *fmt, ...)
 
        return 0;
 }
+EXPORT_SYMBOL(irda_param_unpack);
 
 /*
  * Function irda_param_insert (self, pi, buf, len, info)
@@ -489,6 +493,7 @@ int irda_param_insert(void *self, __u8 pi, __u8 *buf, int len,
                                                 pi_minor_info->func);
        return ret;
 }
+EXPORT_SYMBOL(irda_param_insert);
 
 /*
  * Function irda_param_extract_all (self, buf, len, info)
@@ -544,6 +549,7 @@ int irda_param_extract(void *self, __u8 *buf, int len, pi_param_info_t *info)
                                                  type, pi_minor_info->func);
        return ret;
 }
+EXPORT_SYMBOL(irda_param_extract);
 
 /*
  * Function irda_param_extract_all (self, buf, len, info)
@@ -575,4 +581,4 @@ int irda_param_extract_all(void *self, __u8 *buf, int len,
        }
        return n;
 }
-
+EXPORT_SYMBOL(irda_param_extract_all);