Commit 69c56d9d authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller

[IRDA]: Make more symbols static, to avoid namespace pollution.

parent d2d4c6c2
...@@ -237,7 +237,6 @@ void irda_setup_dma(int channel, char *buffer, int count, int mode); ...@@ -237,7 +237,6 @@ void irda_setup_dma(int channel, char *buffer, int count, int mode);
#endif #endif
void irda_task_delete(struct irda_task *task); void irda_task_delete(struct irda_task *task);
int irda_task_kick(struct irda_task *task);
struct irda_task *irda_task_execute(void *instance, struct irda_task *irda_task_execute(void *instance,
IRDA_TASK_CALLBACK function, IRDA_TASK_CALLBACK function,
IRDA_TASK_CALLBACK finished, IRDA_TASK_CALLBACK finished,
......
...@@ -248,7 +248,7 @@ void irda_task_delete(struct irda_task *task) ...@@ -248,7 +248,7 @@ void irda_task_delete(struct irda_task *task)
* processing, and notify the parent task, that is waiting for this task * processing, and notify the parent task, that is waiting for this task
* to complete. * to complete.
*/ */
int irda_task_kick(struct irda_task *task) static int irda_task_kick(struct irda_task *task)
{ {
int finished = TRUE; int finished = TRUE;
int count = 0; int count = 0;
......
...@@ -159,7 +159,6 @@ EXPORT_SYMBOL(irda_device_dongle_cleanup); ...@@ -159,7 +159,6 @@ EXPORT_SYMBOL(irda_device_dongle_cleanup);
EXPORT_SYMBOL(irda_device_register_dongle); EXPORT_SYMBOL(irda_device_register_dongle);
EXPORT_SYMBOL(irda_device_unregister_dongle); EXPORT_SYMBOL(irda_device_unregister_dongle);
EXPORT_SYMBOL(irda_task_execute); EXPORT_SYMBOL(irda_task_execute);
EXPORT_SYMBOL(irda_task_kick);
EXPORT_SYMBOL(irda_task_next_state); EXPORT_SYMBOL(irda_task_next_state);
EXPORT_SYMBOL(irda_task_delete); EXPORT_SYMBOL(irda_task_delete);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment