diff options
author | Mark Farrugia <mark.farrugia@fiberdyne.com.au> | 2018-10-07 22:00:10 +1100 |
---|---|---|
committer | Mark Farrugia <mark.farrugia@fiberdyne.com.au> | 2018-10-26 17:27:38 +1100 |
commit | 0acef1799beace4dd38d41bda9df77e84a5fe398 (patch) | |
tree | a7d85c3b49db82b2cd1789b49c8860a562a4805b /core.c | |
parent | f834eb7b0799a4678639d2a9f71c1dc4352469ce (diff) |
Remove blocksize from audiopath
This is no longer needed in AVIRT, since it is only actually used for the ADSP Audio Path.
Clean up white space, add function documentation, remove out of place debug prints
Signed-off-by: Mark Farrugia <mark.farrugia@fiberdyne.com.au>
Diffstat (limited to 'core.c')
-rw-r--r-- | core.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -241,9 +241,8 @@ int avirt_audiopath_register(struct avirt_audiopath *audiopath, audiopath_obj->path = audiopath; audiopath->context = audiopath_obj; - pr_info("Registered new Audio Path: %s\n", audiopath->uid); - pr_info("\tBlocksize: %d, Periods: %d\n", audiopath->blocksize, - audiopath->hw->periods_max); + D_INFOK("Registered new Audio Path: %s", audiopath->name); + list_add_tail(&audiopath_obj->list, &audiopath_list); // If we have already sealed the streams, configure this AP |