aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Louis Bossart <[email protected]>2024-08-19 08:55:48 +0800
committerMark Brown <[email protected]>2024-08-19 12:25:53 +0100
commit1f3662838a05f1ab6af89a417f6f252d91d0806b (patch)
treefb69fa727a9f1f26de8fbb33b4aa2fc1a0149238
parentd2234596be2192d9c1ae34f8c7534531191bc433 (diff)
soundwire: intel: increase maximum number of links
Intel platforms have enabled 4 links since the beginning, newer platforms now have 5 links. Update the definition accordingly. This patch will have no effect on older platforms where the number of links was hard-coded. A follow-up patch will add a dynamic check that the ACPI-reported information is aligned with hardware capabilities on newer platforms. Acked-by: Vinod Koul <[email protected]> Signed-off-by: Pierre-Louis Bossart <[email protected]> Reviewed-by: Péter Ujfalusi <[email protected]> Signed-off-by: Bard Liao <[email protected]> Acked-by: Mark Brown <[email protected]> Reviewed-by: Takashi Iwai <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--include/linux/soundwire/sdw_intel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/soundwire/sdw_intel.h b/include/linux/soundwire/sdw_intel.h
index cb8e7396b4db..37ae69365fe2 100644
--- a/include/linux/soundwire/sdw_intel.h
+++ b/include/linux/soundwire/sdw_intel.h
@@ -453,6 +453,6 @@ extern const struct sdw_intel_hw_ops sdw_intel_lnl_hw_ops;
/*
* Max number of links supported in hardware
*/
-#define SDW_INTEL_MAX_LINKS 4
+#define SDW_INTEL_MAX_LINKS 5
#endif