Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
5f085d75
Commit
5f085d75
authored
Mar 08, 2004
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IRDA]: Move irda_param related exports out of irsyms.
parent
7c43e2a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
net/irda/irsyms.c
net/irda/irsyms.c
+0
-5
net/irda/parameters.c
net/irda/parameters.c
+7
-1
No files found.
net/irda/irsyms.c
View file @
5f085d75
...
...
@@ -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 */
...
...
net/irda/parameters.c
View file @
5f085d75
...
...
@@ -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
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment