Commit c16e923d authored by ChenTao's avatar ChenTao Committed by Mark Brown

soc: fsl_asrc: Make some functions static

Fix the following warning:

sound/soc/fsl/fsl_asrc.c:157:5: warning:
symbol 'fsl_asrc_request_pair' was not declared. Should it be static?
sound/soc/fsl/fsl_asrc.c:200:6: warning:
symbol 'fsl_asrc_release_pair' was not declared. Should it be static?
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarChenTao <chentao107@huawei.com>
Link: https://lore.kernel.org/r/20200507022959.183739-1-chentao107@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7ae07308
...@@ -154,7 +154,7 @@ static void fsl_asrc_sel_proc(int inrate, int outrate, ...@@ -154,7 +154,7 @@ static void fsl_asrc_sel_proc(int inrate, int outrate,
* within range [ANCA, ANCA+ANCB-1], depends on the channels of pair A * within range [ANCA, ANCA+ANCB-1], depends on the channels of pair A
* while pair A and pair C are comparatively independent. * while pair A and pair C are comparatively independent.
*/ */
int fsl_asrc_request_pair(int channels, struct fsl_asrc_pair *pair) static int fsl_asrc_request_pair(int channels, struct fsl_asrc_pair *pair)
{ {
enum asrc_pair_index index = ASRC_INVALID_PAIR; enum asrc_pair_index index = ASRC_INVALID_PAIR;
struct fsl_asrc *asrc = pair->asrc; struct fsl_asrc *asrc = pair->asrc;
...@@ -197,7 +197,7 @@ int fsl_asrc_request_pair(int channels, struct fsl_asrc_pair *pair) ...@@ -197,7 +197,7 @@ int fsl_asrc_request_pair(int channels, struct fsl_asrc_pair *pair)
* *
* It clears the resource from asrc and releases the occupied channels. * It clears the resource from asrc and releases the occupied channels.
*/ */
void fsl_asrc_release_pair(struct fsl_asrc_pair *pair) static void fsl_asrc_release_pair(struct fsl_asrc_pair *pair)
{ {
struct fsl_asrc *asrc = pair->asrc; struct fsl_asrc *asrc = pair->asrc;
enum asrc_pair_index index = pair->index; enum asrc_pair_index index = pair->index;
......
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