All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] serial: Fix SIFIVE debug serial dependency
@ 2020-07-10 10:41 Michal Simek
  2020-07-15  1:05 ` Simon Glass
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Michal Simek @ 2020-07-10 10:41 UTC (permalink / raw)
  To: u-boot

The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
debug consoles") has added incorrect dependency for SIFIVE debug uart which
should depend on SIFIVE driver instead of PL01x.

Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

Changes in v2:
- Add fixes tag - asked by Simon

 drivers/serial/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index 17d0e7362379..006cb5a50140 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -359,7 +359,7 @@ config DEBUG_UART_SANDBOX
 
 config DEBUG_UART_SIFIVE
 	bool "SiFive UART"
-	depends on PL01X_SERIAL
+	depends on SIFIVE_SERIAL
 	help
 	  Select this to enable a debug UART using the serial_sifive driver. You
 	  will need to provide parameters to make this work. The driver will
-- 
2.27.0

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

* [PATCH v2] serial: Fix SIFIVE debug serial dependency
  2020-07-10 10:41 [PATCH v2] serial: Fix SIFIVE debug serial dependency Michal Simek
@ 2020-07-15  1:05 ` Simon Glass
  2020-07-21  0:54 ` Bin Meng
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Glass @ 2020-07-15  1:05 UTC (permalink / raw)
  To: u-boot

On Fri, 10 Jul 2020 at 04:41, Michal Simek <michal.simek@xilinx.com> wrote:
>
> The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
> debug consoles") has added incorrect dependency for SIFIVE debug uart which
> should depend on SIFIVE driver instead of PL01x.
>
> Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
> Changes in v2:
> - Add fixes tag - asked by Simon
>
>  drivers/serial/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [PATCH v2] serial: Fix SIFIVE debug serial dependency
  2020-07-10 10:41 [PATCH v2] serial: Fix SIFIVE debug serial dependency Michal Simek
  2020-07-15  1:05 ` Simon Glass
@ 2020-07-21  0:54 ` Bin Meng
  2020-07-21  9:03 ` Leo Liang
  2020-07-21 14:12 ` Sean Anderson
  3 siblings, 0 replies; 5+ messages in thread
From: Bin Meng @ 2020-07-21  0:54 UTC (permalink / raw)
  To: u-boot

On Fri, Jul 10, 2020 at 6:41 PM Michal Simek <michal.simek@xilinx.com> wrote:
>
> The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
> debug consoles") has added incorrect dependency for SIFIVE debug uart which
> should depend on SIFIVE driver instead of PL01x.
>
> Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
> Changes in v2:
> - Add fixes tag - asked by Simon
>
>  drivers/serial/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Bin Meng <bin.meng@windriver.com>

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

* [PATCH v2] serial: Fix SIFIVE debug serial dependency
  2020-07-10 10:41 [PATCH v2] serial: Fix SIFIVE debug serial dependency Michal Simek
  2020-07-15  1:05 ` Simon Glass
  2020-07-21  0:54 ` Bin Meng
@ 2020-07-21  9:03 ` Leo Liang
  2020-07-21 14:12 ` Sean Anderson
  3 siblings, 0 replies; 5+ messages in thread
From: Leo Liang @ 2020-07-21  9:03 UTC (permalink / raw)
  To: u-boot

On Fri, Jul 10, 2020 at 12:41:13PM +0200, Michal Simek wrote:
> The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
> debug consoles") has added incorrect dependency for SIFIVE debug uart which
> should depend on SIFIVE driver instead of PL01x.
> 
> Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
> 
> Changes in v2:
> - Add fixes tag - asked by Simon
> 
>  drivers/serial/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
> index 17d0e7362379..006cb5a50140 100644
> --- a/drivers/serial/Kconfig
> +++ b/drivers/serial/Kconfig
> @@ -359,7 +359,7 @@ config DEBUG_UART_SANDBOX
>  
>  config DEBUG_UART_SIFIVE
>  	bool "SiFive UART"
> -	depends on PL01X_SERIAL
> +	depends on SIFIVE_SERIAL
>  	help
>  	  Select this to enable a debug UART using the serial_sifive driver. You
>  	  will need to provide parameters to make this work. The driver will
> -- 
> 2.27.0
>

Reviewed-by: Leo Liang <ycliang@andestech.com>

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

* [PATCH v2] serial: Fix SIFIVE debug serial dependency
  2020-07-10 10:41 [PATCH v2] serial: Fix SIFIVE debug serial dependency Michal Simek
                   ` (2 preceding siblings ...)
  2020-07-21  9:03 ` Leo Liang
@ 2020-07-21 14:12 ` Sean Anderson
  3 siblings, 0 replies; 5+ messages in thread
From: Sean Anderson @ 2020-07-21 14:12 UTC (permalink / raw)
  To: u-boot

On 7/10/20 6:41 AM, Michal Simek wrote:
> The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
> debug consoles") has added incorrect dependency for SIFIVE debug uart which
> should depend on SIFIVE driver instead of PL01x.
> 
> Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
> 
> Changes in v2:
> - Add fixes tag - asked by Simon
> 
>  drivers/serial/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
> index 17d0e7362379..006cb5a50140 100644
> --- a/drivers/serial/Kconfig
> +++ b/drivers/serial/Kconfig
> @@ -359,7 +359,7 @@ config DEBUG_UART_SANDBOX
>  
>  config DEBUG_UART_SIFIVE
>  	bool "SiFive UART"
> -	depends on PL01X_SERIAL
> +	depends on SIFIVE_SERIAL
>  	help
>  	  Select this to enable a debug UART using the serial_sifive driver. You
>  	  will need to provide parameters to make this work. The driver will
> 

Reviewed-by: Sean Anderson <seanga2@gmail.com>

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

end of thread, other threads:[~2020-07-21 14:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10 10:41 [PATCH v2] serial: Fix SIFIVE debug serial dependency Michal Simek
2020-07-15  1:05 ` Simon Glass
2020-07-21  0:54 ` Bin Meng
2020-07-21  9:03 ` Leo Liang
2020-07-21 14:12 ` Sean Anderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.