Skip to content
Snippets Groups Projects
Commit c4e4a8fb authored by kbuild test robot's avatar kbuild test robot Committed by Takashi Iwai
Browse files

ALSA: cmi8328: array_find() can be static

parent 91a8561d
Branches
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ static int snd_cmi8328_mixer(struct snd_wss *chip) ...@@ -192,7 +192,7 @@ static int snd_cmi8328_mixer(struct snd_wss *chip)
} }
/* find index of an item in "-1"-ended array */ /* find index of an item in "-1"-ended array */
int array_find(int array[], int item) static int array_find(int array[], int item)
{ {
int i; int i;
...@@ -203,7 +203,7 @@ int array_find(int array[], int item) ...@@ -203,7 +203,7 @@ int array_find(int array[], int item)
return -1; return -1;
} }
/* the same for long */ /* the same for long */
int array_find_l(long array[], long item) static int array_find_l(long array[], long item)
{ {
int i; int i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment