topology: Add missing ATTRIBUTE_UNUSED

... to shut up the compiler warnings.

Fixes: b6c9afb4f5 ("topology: implement snd_tplg_decode")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Takashi Iwai 2020-05-11 16:35:45 +02:00
parent fa2f20b71e
commit 750a3d9fd8

View file

@ -2053,20 +2053,22 @@ next:
} }
/* decode dai from the binary input */ /* decode dai from the binary input */
int tplg_decode_dai(snd_tplg_t *tplg, int tplg_decode_dai(snd_tplg_t *tplg ATTRIBUTE_UNUSED,
size_t pos, size_t pos ATTRIBUTE_UNUSED,
struct snd_soc_tplg_hdr *hdr, struct snd_soc_tplg_hdr *hdr ATTRIBUTE_UNUSED,
void *bin, size_t size) void *bin ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED)
{ {
SNDERR("not implemented"); SNDERR("not implemented");
return -ENXIO; return -ENXIO;
} }
/* decode cc from the binary input */ /* decode cc from the binary input */
int tplg_decode_cc(snd_tplg_t *tplg, int tplg_decode_cc(snd_tplg_t *tplg ATTRIBUTE_UNUSED,
size_t pos, size_t pos ATTRIBUTE_UNUSED,
struct snd_soc_tplg_hdr *hdr, struct snd_soc_tplg_hdr *hdr ATTRIBUTE_UNUSED,
void *bin, size_t size) void *bin ATTRIBUTE_UNUSED,
size_t size ATTRIBUTE_UNUSED)
{ {
SNDERR("not implemented"); SNDERR("not implemented");
return -ENXIO; return -ENXIO;