diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-04-17 23:12:34 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-04-17 23:37:55 -0400 |
commit | 89b09b99703b0068f6bc39f7aa48dc81cd7e14d3 (patch) | |
tree | 3171fd0b4cb5fe58890394385218b346c246aa7f /drivers | |
parent | 3e65067defaf0024c62d71b06d536e7206d14b73 (diff) |
Input: serio - rearrange EXPORT_SYMBOL() markings
Current style calls for placing EXPORT_SYMBOL() markings directly
after exported symbol definition; let's follow it.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/serio/serio.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c index bc033250dfcd..8d2df5d2d5a2 100644 --- a/drivers/input/serio/serio.c +++ b/drivers/input/serio/serio.c | |||
@@ -41,17 +41,6 @@ MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>"); | |||
41 | MODULE_DESCRIPTION("Serio abstraction core"); | 41 | MODULE_DESCRIPTION("Serio abstraction core"); |
42 | MODULE_LICENSE("GPL"); | 42 | MODULE_LICENSE("GPL"); |
43 | 43 | ||
44 | EXPORT_SYMBOL(serio_interrupt); | ||
45 | EXPORT_SYMBOL(__serio_register_port); | ||
46 | EXPORT_SYMBOL(serio_unregister_port); | ||
47 | EXPORT_SYMBOL(serio_unregister_child_port); | ||
48 | EXPORT_SYMBOL(__serio_register_driver); | ||
49 | EXPORT_SYMBOL(serio_unregister_driver); | ||
50 | EXPORT_SYMBOL(serio_open); | ||
51 | EXPORT_SYMBOL(serio_close); | ||
52 | EXPORT_SYMBOL(serio_rescan); | ||
53 | EXPORT_SYMBOL(serio_reconnect); | ||
54 | |||
55 | /* | 44 | /* |
56 | * serio_mutex protects entire serio subsystem and is taken every time | 45 | * serio_mutex protects entire serio subsystem and is taken every time |
57 | * serio port or driver registrered or unregistered. | 46 | * serio port or driver registrered or unregistered. |
@@ -692,11 +681,13 @@ void serio_rescan(struct serio *serio) | |||
692 | { | 681 | { |
693 | serio_queue_event(serio, NULL, SERIO_RESCAN_PORT); | 682 | serio_queue_event(serio, NULL, SERIO_RESCAN_PORT); |
694 | } | 683 | } |
684 | EXPORT_SYMBOL(serio_rescan); | ||
695 | 685 | ||
696 | void serio_reconnect(struct serio *serio) | 686 | void serio_reconnect(struct serio *serio) |
697 | { | 687 | { |
698 | serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN); | 688 | serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN); |
699 | } | 689 | } |
690 | EXPORT_SYMBOL(serio_reconnect); | ||
700 | 691 | ||
701 | /* | 692 | /* |
702 | * Submits register request to kseriod for subsequent execution. | 693 | * Submits register request to kseriod for subsequent execution. |
@@ -707,6 +698,7 @@ void __serio_register_port(struct serio *serio, struct module *owner) | |||
707 | serio_init_port(serio); | 698 | serio_init_port(serio); |
708 | serio_queue_event(serio, owner, SERIO_REGISTER_PORT); | 699 | serio_queue_event(serio, owner, SERIO_REGISTER_PORT); |
709 | } | 700 | } |
701 | EXPORT_SYMBOL(__serio_register_port); | ||
710 | 702 | ||
711 | /* | 703 | /* |
712 | * Synchronously unregisters serio port. | 704 | * Synchronously unregisters serio port. |
@@ -718,6 +710,7 @@ void serio_unregister_port(struct serio *serio) | |||
718 | serio_destroy_port(serio); | 710 | serio_destroy_port(serio); |
719 | mutex_unlock(&serio_mutex); | 711 | mutex_unlock(&serio_mutex); |
720 | } | 712 | } |
713 | EXPORT_SYMBOL(serio_unregister_port); | ||
721 | 714 | ||
722 | /* | 715 | /* |
723 | * Safely unregisters child port if one is present. | 716 | * Safely unregisters child port if one is present. |
@@ -731,6 +724,7 @@ void serio_unregister_child_port(struct serio *serio) | |||
731 | } | 724 | } |
732 | mutex_unlock(&serio_mutex); | 725 | mutex_unlock(&serio_mutex); |
733 | } | 726 | } |
727 | EXPORT_SYMBOL(serio_unregister_child_port); | ||
734 | 728 | ||
735 | 729 | ||
736 | /* | 730 | /* |
@@ -854,6 +848,7 @@ int __serio_register_driver(struct serio_driver *drv, struct module *owner, cons | |||
854 | 848 | ||
855 | return 0; | 849 | return 0; |
856 | } | 850 | } |
851 | EXPORT_SYMBOL(__serio_register_driver); | ||
857 | 852 | ||
858 | void serio_unregister_driver(struct serio_driver *drv) | 853 | void serio_unregister_driver(struct serio_driver *drv) |
859 | { | 854 | { |
@@ -877,6 +872,7 @@ start_over: | |||
877 | driver_unregister(&drv->driver); | 872 | driver_unregister(&drv->driver); |
878 | mutex_unlock(&serio_mutex); | 873 | mutex_unlock(&serio_mutex); |
879 | } | 874 | } |
875 | EXPORT_SYMBOL(serio_unregister_driver); | ||
880 | 876 | ||
881 | static void serio_set_drv(struct serio *serio, struct serio_driver *drv) | 877 | static void serio_set_drv(struct serio *serio, struct serio_driver *drv) |
882 | { | 878 | { |
@@ -974,6 +970,7 @@ int serio_open(struct serio *serio, struct serio_driver *drv) | |||
974 | } | 970 | } |
975 | return 0; | 971 | return 0; |
976 | } | 972 | } |
973 | EXPORT_SYMBOL(serio_open); | ||
977 | 974 | ||
978 | /* called from serio_driver->connect/disconnect methods under serio_mutex */ | 975 | /* called from serio_driver->connect/disconnect methods under serio_mutex */ |
979 | void serio_close(struct serio *serio) | 976 | void serio_close(struct serio *serio) |
@@ -983,6 +980,7 @@ void serio_close(struct serio *serio) | |||
983 | 980 | ||
984 | serio_set_drv(serio, NULL); | 981 | serio_set_drv(serio, NULL); |
985 | } | 982 | } |
983 | EXPORT_SYMBOL(serio_close); | ||
986 | 984 | ||
987 | irqreturn_t serio_interrupt(struct serio *serio, | 985 | irqreturn_t serio_interrupt(struct serio *serio, |
988 | unsigned char data, unsigned int dfl) | 986 | unsigned char data, unsigned int dfl) |
@@ -1003,6 +1001,7 @@ irqreturn_t serio_interrupt(struct serio *serio, | |||
1003 | 1001 | ||
1004 | return ret; | 1002 | return ret; |
1005 | } | 1003 | } |
1004 | EXPORT_SYMBOL(serio_interrupt); | ||
1006 | 1005 | ||
1007 | static struct bus_type serio_bus = { | 1006 | static struct bus_type serio_bus = { |
1008 | .name = "serio", | 1007 | .name = "serio", |