Fixup some minor code formatting issues

Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
This commit is contained in:
Charles Keepax
2017-09-07 16:38:52 +01:00
parent 134500534e
commit 7647ae9662
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -637,7 +637,7 @@ int mixer_ctl_get_array(const struct mixer_ctl *ctl, void *array, size_t count)
void *source;
size_t total_count;
if ((!ctl) || !count || !array)
if (!ctl || !count || !array)
return -EINVAL;
total_count = ctl->info.count;
+2 -2
View File
@@ -168,7 +168,7 @@ static void tinymix_list_controls(struct mixer *mixer, int print_all)
num_values = mixer_ctl_get_num_values(ctl);
printf("%u\t%s\t%u\t%-40s", i, type, num_values, name);
if (print_all)
tinymix_detail_control(mixer, name);
tinymix_detail_control(mixer, name);
printf("\n");
}
}
@@ -265,7 +265,7 @@ static void tinymix_detail_control(struct mixer *mixer, const char *control)
}
static void tinymix_set_byte_ctl(struct mixer_ctl *ctl,
char **values, unsigned int num_values)
char **values, unsigned int num_values)
{
int ret;
char *buf;