mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-02 09:01:48 -05:00
topology: Remove unused function write_data_block()
Fix gcc warning: 'write_data_block' defined but not used [-Wunused-function]. Signed-off-by: Mengdong Lin <mengdong.lin@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
9b09a3d500
commit
a661f144d9
1 changed files with 0 additions and 24 deletions
|
|
@ -82,30 +82,6 @@ static int write_block_header(snd_tplg_t *tplg, unsigned int type,
|
|||
return bytes;
|
||||
}
|
||||
|
||||
static int write_data_block(snd_tplg_t *tplg, int size, int tplg_type,
|
||||
const char *obj_name, void *data)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* write the header for this block */
|
||||
ret = write_block_header(tplg, tplg_type, 0,
|
||||
tplg->version, 0, size, 1);
|
||||
if (ret < 0) {
|
||||
SNDERR("error: failed to write %s block %d\n", obj_name, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
verbose(tplg, " %s : write %d bytes\n", obj_name, size);
|
||||
|
||||
ret = write(tplg->out_fd, data, size);
|
||||
if (ret < 0) {
|
||||
SNDERR("error: failed to write %s %d\n", obj_name, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int write_elem_block(snd_tplg_t *tplg,
|
||||
struct list_head *base, int size, int tplg_type, const char *obj_name)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue