Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7c556bb authored by Vatsal Bucha's avatar Vatsal Bucha
Browse files

dsp:q6asm: Resolve warning during compilation for static global function



Some functions in q6asm are declared as static and global with export_symbol
resulting in warning bring generated during compilation. Remove static from
functions to resolve issue.

Change-Id: I2c7be032278f956effc0d230a53fef5e02f771d7
Signed-off-by: default avatarVatsal Bucha <vbucha@codeaurora.org>
parent 58f399da
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -5428,7 +5428,6 @@ static int q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
fail_cmd:
	return rc;
}
EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v5);

/*
 * q6asm_enc_cfg_blk_pcm_v4 - sends encoder configuration parameters
@@ -8884,7 +8883,6 @@ static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
	mmap_region_cmd = NULL;
	return rc;
}
EXPORT_SYMBOL(q6asm_memory_map_regions);

/**
 * q6asm_memory_unmap_regions -
@@ -8983,7 +8981,6 @@ static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir)
	}
	return rc;
}
EXPORT_SYMBOL(q6asm_memory_unmap_regions);

int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain)
{