From 6f8f08a6a345f360480cd5235c32f04c68e19135 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Wed, 5 May 2021 09:07:59 -0500 Subject: [PATCH] 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 --- drivers/i2s/i2s_sam_ssc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2s/i2s_sam_ssc.c b/drivers/i2s/i2s_sam_ssc.c index f5666af3687..8ca18148a7d 100644 --- a/drivers/i2s/i2s_sam_ssc.c +++ b/drivers/i2s/i2s_sam_ssc.c @@ -88,7 +88,7 @@ struct stream { const struct device *); void (*queue_drop)(struct stream *); int (*set_data_format)(const struct i2s_sam_dev_cfg *const, - struct i2s_config *); + const struct i2s_config *); }; /* Device run time data */