diff options
author | Jonathan Marek <jonathan@marek.ca> | 2020-09-08 10:08:17 -0400 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-09-09 13:27:17 +0530 |
commit | 09309093d5e8f8774e4a3a0d42b73cf47e9421cf (patch) | |
tree | 3e0a46154cb443a02c46ff34be5fc306a8495aca /drivers/soundwire | |
parent | d2068da5c85697b5880483dd7beaba98e0b62e02 (diff) | |
download | linux-09309093d5e8f8774e4a3a0d42b73cf47e9421cf.tar.bz2 |
soundwire: qcom: fix SLIBMUS/SLIMBUS typo
Fix slimbus case being broken thanks to a typo.
Fixes: 5bd773242f75 ("soundwire: qcom: avoid dependency on CONFIG_SLIMBUS")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20200908140818.28373-1-jonathan@marek.ca
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/soundwire')
-rw-r--r-- | drivers/soundwire/qcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c index 77bc58b4cca2..d7aabdaffee3 100644 --- a/drivers/soundwire/qcom.c +++ b/drivers/soundwire/qcom.c @@ -767,7 +767,7 @@ static int qcom_swrm_probe(struct platform_device *pdev) if (!ctrl) return -ENOMEM; -#if IS_ENABLED(CONFIG_SLIBMUS) +#if IS_ENABLED(CONFIG_SLIMBUS) if (dev->parent->bus == &slimbus_bus) { #else if (false) { |