mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-16 22:39:26 +00:00
snd_cs46xx_download_image() was originally called from dsp_spos.c, but
is now local to cs46xx_lib.c. Mark it as 'static' to avoid a warning
about it lacking a declaration, and '__maybe_unused' to avoid a warning
about it being unused when CONFIG_SND_CS46XX_NEW_DSP is disabled:
sound/pci/cs46xx/cs46xx_lib.c:534:5: error: no previous prototype for 'snd_cs46xx_download_image'
Fixes:
|
||
|---|---|---|
| .. | ||
| cs46xx_dsp_scb_types.h | ||
| cs46xx_dsp_spos.h | ||
| cs46xx_dsp_task_types.h | ||
| cs46xx_lib.c | ||
| cs46xx_lib.h | ||
| cs46xx.c | ||
| cs46xx.h | ||
| dsp_spos_scb_lib.c | ||
| dsp_spos.c | ||
| dsp_spos.h | ||
| Makefile | ||