drivers: i2s: i2s_sam_ssc: Fix build issue
Change to make i2s_config const missed a case in the SAM driver. Without this we get build errors when building in CI. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
5f423d45cf
commit
6f8f08a6a3
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ struct stream {
|
||||||
const struct device *);
|
const struct device *);
|
||||||
void (*queue_drop)(struct stream *);
|
void (*queue_drop)(struct stream *);
|
||||||
int (*set_data_format)(const struct i2s_sam_dev_cfg *const,
|
int (*set_data_format)(const struct i2s_sam_dev_cfg *const,
|
||||||
struct i2s_config *);
|
const struct i2s_config *);
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Device run time data */
|
/* Device run time data */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue