linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo
@ 2020-09-08 14:08 Jonathan Marek
  2020-09-08 14:54 ` Bjorn Andersson
  2020-09-09  7:57 ` Vinod Koul
  0 siblings, 2 replies; 3+ messages in thread
From: Jonathan Marek @ 2020-09-08 14:08 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: Andy Gross, Bjorn Andersson, Vinod Koul, Bard Liao,
	Pierre-Louis Bossart, Sanyog Kale,
	moderated list:SOUNDWIRE SUBSYSTEM, open list

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>
---
This should be squashed into the problematic patch if possible,
but I'm not sure if that's possible since its already in linux-next?

 drivers/soundwire/qcom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c
index 100af93a5eab..c406a079d237 100644
--- a/drivers/soundwire/qcom.c
+++ b/drivers/soundwire/qcom.c
@@ -780,7 +780,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) {
-- 
2.26.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo
  2020-09-08 14:08 [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo Jonathan Marek
@ 2020-09-08 14:54 ` Bjorn Andersson
  2020-09-09  7:57 ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2020-09-08 14:54 UTC (permalink / raw)
  To: Jonathan Marek
  Cc: linux-arm-msm, Andy Gross, Vinod Koul, Bard Liao,
	Pierre-Louis Bossart, Sanyog Kale,
	moderated list:SOUNDWIRE SUBSYSTEM, open list

On Tue 08 Sep 09:08 CDT 2020, Jonathan Marek wrote:

> Fix slimbus case being broken thanks to a typo.
> 
> Fixes: 5bd773242f75 ("soundwire: qcom: avoid dependency on CONFIG_SLIMBUS")
> 

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

> Signed-off-by: Jonathan Marek <jonathan@marek.ca>
> ---
> This should be squashed into the problematic patch if possible,
> but I'm not sure if that's possible since its already in linux-next?
> 
>  drivers/soundwire/qcom.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c
> index 100af93a5eab..c406a079d237 100644
> --- a/drivers/soundwire/qcom.c
> +++ b/drivers/soundwire/qcom.c
> @@ -780,7 +780,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) {
> -- 
> 2.26.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo
  2020-09-08 14:08 [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo Jonathan Marek
  2020-09-08 14:54 ` Bjorn Andersson
@ 2020-09-09  7:57 ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2020-09-09  7:57 UTC (permalink / raw)
  To: Jonathan Marek
  Cc: linux-arm-msm, Andy Gross, Bjorn Andersson, Bard Liao,
	Pierre-Louis Bossart, Sanyog Kale,
	moderated list:SOUNDWIRE SUBSYSTEM, open list

On 08-09-20, 10:08, Jonathan Marek wrote:
> Fix slimbus case being broken thanks to a typo.
> 

Applied, thanks

> Fixes: 5bd773242f75 ("soundwire: qcom: avoid dependency on CONFIG_SLIMBUS")
> 

No need of blank line here

> Signed-off-by: Jonathan Marek <jonathan@marek.ca>
> ---
> This should be squashed into the problematic patch if possible,
> but I'm not sure if that's possible since its already in linux-next?
> 
>  drivers/soundwire/qcom.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c
> index 100af93a5eab..c406a079d237 100644
> --- a/drivers/soundwire/qcom.c
> +++ b/drivers/soundwire/qcom.c
> @@ -780,7 +780,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) {
> -- 
> 2.26.1

-- 
~Vinod

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-09  7:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-08 14:08 [PATCH] soundwire: qcom: fix SLIBMUS/SLIMBUS typo Jonathan Marek
2020-09-08 14:54 ` Bjorn Andersson
2020-09-09  7:57 ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).