From 9ed8335d3c28561c232850cd6996fe2ebd789270 Mon Sep 17 00:00:00 2001 From: Bard Liao Date: Tue, 6 May 2025 10:46:14 +0800 Subject: [PATCH] fixup! ASoC: SOF: add disable_function_topology module parameter To fix the checkpatch error below. ERROR: do not initialise statics to false +static bool disable_function_topology = false; total: 1 errors, 0 warnings, 0 checks, 20 lines checked Signed-off-by: Bard Liao --- sound/soc/sof/topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c index 38f9b60155c6bc..82dd03c507ff92 100644 --- a/sound/soc/sof/topology.c +++ b/sound/soc/sof/topology.c @@ -19,7 +19,7 @@ #include "sof-audio.h" #include "ops.h" -static bool disable_function_topology = false; +static bool disable_function_topology; module_param(disable_function_topology, bool, 0444); MODULE_PARM_DESC(disable_function_topology, "Disable function topology loading");