diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-08-04 23:15:27 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-08-09 09:34:19 -0400 |
commit | cf1dea73c72ded6e1e1f61598a69b663d4c163ed (patch) | |
tree | d4a616ca74d8b3ca54dd493212ed82f69bb488c0 /drivers/usb/gadget/f_uac1.c | |
parent | 2419831c375d466fcf41dfe02799e5750c25f765 (diff) |
usb: gadget: f_uac1: Staticize local functions
control_selector_init() is used only in this file.
audio_bind_config() is used only in audio.c file to which
f_uac1.c is included. Thus, these functions are staticized
to fix the following warnings.
drivers/usb/gadget/f_uac1.c:698:12: warning: symbol 'control_selector_init' was not declared. Should it be static?
drivers/usb/gadget/f_uac1.c:722:12: warning: symbol 'audio_bind_config' was not declared. Should it be static?
Acked-by: Jassi Brar <jaswinder.singh@linaro.org>
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/f_uac1.c')
-rw-r--r-- | drivers/usb/gadget/f_uac1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/f_uac1.c b/drivers/usb/gadget/f_uac1.c index fa8ea4ea00c1..2b4c82d84bfc 100644 --- a/drivers/usb/gadget/f_uac1.c +++ b/drivers/usb/gadget/f_uac1.c | |||
@@ -695,7 +695,7 @@ static int generic_get_cmd(struct usb_audio_control *con, u8 cmd) | |||
695 | } | 695 | } |
696 | 696 | ||
697 | /* Todo: add more control selecotor dynamically */ | 697 | /* Todo: add more control selecotor dynamically */ |
698 | int __init control_selector_init(struct f_audio *audio) | 698 | static int __init control_selector_init(struct f_audio *audio) |
699 | { | 699 | { |
700 | INIT_LIST_HEAD(&audio->cs); | 700 | INIT_LIST_HEAD(&audio->cs); |
701 | list_add(&feature_unit.list, &audio->cs); | 701 | list_add(&feature_unit.list, &audio->cs); |
@@ -719,7 +719,7 @@ int __init control_selector_init(struct f_audio *audio) | |||
719 | * | 719 | * |
720 | * Returns zero on success, else negative errno. | 720 | * Returns zero on success, else negative errno. |
721 | */ | 721 | */ |
722 | int __init audio_bind_config(struct usb_configuration *c) | 722 | static int __init audio_bind_config(struct usb_configuration *c) |
723 | { | 723 | { |
724 | struct f_audio *audio; | 724 | struct f_audio *audio; |
725 | int status; | 725 | int status; |