mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 06:08:22 +00:00
drm/amd/display: Increase size of audios array
[Why] The audios array defined in "struct resource_pool" is only 6 (MAX_PIPES) but the max number of audio devices (num_audio) is 7. In some projects, it will run out of audios array. [How] Incraese the audios array size to 7. Signed-off-by: Tai Man <taiman.wong@amd.com> Reviewed-by: Joshua Aberback <Joshua.Aberback@amd.com> Acked-by: Leo Li <sunpeng.li@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
58caae27df
commit
7352193a33
2 changed files with 2 additions and 1 deletions
|
@ -212,7 +212,7 @@ struct resource_pool {
|
|||
struct clock_source *clock_sources[MAX_CLOCK_SOURCES];
|
||||
unsigned int clk_src_count;
|
||||
|
||||
struct audio *audios[MAX_PIPES];
|
||||
struct audio *audios[MAX_AUDIOS];
|
||||
unsigned int audio_count;
|
||||
struct audio_support audio_support;
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
* Data types shared between different Virtual HW blocks
|
||||
******************************************************************************/
|
||||
|
||||
#define MAX_AUDIOS 7
|
||||
#define MAX_PIPES 6
|
||||
#if defined(CONFIG_DRM_AMD_DC_DCN2_0)
|
||||
#define MAX_DWB_PIPES 1
|
||||
|
|
Loading…
Add table
Reference in a new issue