Re: [Sound-open-firmware] [alsa-devel] [PATCH v3 02/14] ASoC: SOF: Add Sound Open Firmware KControl support
11 Dec
2018
11 Dec
'18
11:48 p.m.
- max_size = (be->max < max_size) ? be->max : max_size;
min() / max() ?
Good catch, this can be simplified.
Not sure I like max_size = min (be->max, max_size), it's confusing.
Maybe
if (be->max < max_size)
max_size = be->max;
2195
Age (days ago)
2195
Last active (days ago)
0 comments
1 participants
participants (1)
-
Pierre-Louis Bossart