summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/drivers/sof/chip.h3
-rw-r--r--src/drivers/sof/sof.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/drivers/sof/chip.h b/src/drivers/sof/chip.h
index 5f7e8b8120..8d5b0f1893 100644
--- a/src/drivers/sof/chip.h
+++ b/src/drivers/sof/chip.h
@@ -8,7 +8,8 @@
/* Speaker topology */
enum _spkr_tplg {
- max98373 = 1,
+ max98373 = 1, /* port SSP1 */
+ max98373_ssp2,
max98360a,
max98357a,
max98357a_tdm,
diff --git a/src/drivers/sof/sof.c b/src/drivers/sof/sof.c
index edc1f80d0e..b476c1f365 100644
--- a/src/drivers/sof/sof.c
+++ b/src/drivers/sof/sof.c
@@ -12,6 +12,7 @@ static const char *get_spkr_tplg_str(enum _spkr_tplg tplg)
{
switch (tplg) {
case max98373: return "max98373";
+ case max98373_ssp2: return "max98373-ssp2";
case max98360a: return "max98360a";
case max98357a: return "max98357a";
case max98357a_tdm: return "max98357a-tdm";