ASoC: Intel: Fix to use byte control interface
Using a byte control interface instead of generic_params ioctl. Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
7d1311b93e
commit
ea5edfe2f1
1 changed files with 2 additions and 4 deletions
|
@ -63,9 +63,7 @@ enum sst_controls {
|
||||||
SST_SND_BUFFER_POINTER = 0x05,
|
SST_SND_BUFFER_POINTER = 0x05,
|
||||||
SST_SND_STREAM_INIT = 0x06,
|
SST_SND_STREAM_INIT = 0x06,
|
||||||
SST_SND_START = 0x07,
|
SST_SND_START = 0x07,
|
||||||
SST_SET_BYTE_STREAM = 0x100A,
|
SST_MAX_CONTROLS = 0x07,
|
||||||
SST_GET_BYTE_STREAM = 0x100B,
|
|
||||||
SST_MAX_CONTROLS = SST_GET_BYTE_STREAM,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum sst_stream_ops {
|
enum sst_stream_ops {
|
||||||
|
@ -129,7 +127,7 @@ struct compress_sst_ops {
|
||||||
struct sst_ops {
|
struct sst_ops {
|
||||||
int (*open) (struct snd_sst_params *str_param);
|
int (*open) (struct snd_sst_params *str_param);
|
||||||
int (*device_control) (int cmd, void *arg);
|
int (*device_control) (int cmd, void *arg);
|
||||||
int (*set_generic_params)(enum sst_controls cmd, void *arg);
|
int (*send_byte_stream)(struct snd_sst_bytes_v2 *bytes);
|
||||||
int (*close) (unsigned int str_id);
|
int (*close) (unsigned int str_id);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue