]> git.baikalelectronics.ru Git - kernel.git/commit
usb: gadget: f_uac1: Staticize local functions
authorJingoo Han <jg1.han@samsung.com>
Mon, 5 Aug 2013 03:15:27 +0000 (12:15 +0900)
committerFelipe Balbi <balbi@ti.com>
Fri, 9 Aug 2013 13:34:19 +0000 (16:34 +0300)
commit081f89a877e87c9e66e3824d26590e1c5c633091
treed4a616ca74d8b3ca54dd493212ed82f69bb488c0
parent5d77460debd8fc7e89a8ad6ffb9b135e29708a6e
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>
drivers/usb/gadget/f_uac1.c