diff options
| author | Robert Marko <[email protected]> | 2024-04-15 12:49:25 +0200 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2024-04-23 13:29:13 +0200 |
| commit | 6b163a63e5705bff12491ea7e3b67cef9a6bfc05 (patch) | |
| tree | b34934b9de814e538a6940d8fc8fe38958e13b34 | |
| parent | 0bfbd404efa8adee75e6d7fe5a8d70db98a7f4d5 (diff) | |
serial: allow selecting MSM debug UART with ARCH_IPQ40XX
Currently, DEBUG_UART_MSM depends on ARCH_SNAPDRAGON only, but IPQ40XX
devices also use the same UART HW so they can also use the debug UART.
So, allow selecting DEBUG_UART_MSM when using ARCH_IPQ40XX as well.
Signed-off-by: Robert Marko <[email protected]>
Reviewed-by: Caleb Connolly <[email protected]>
Signed-off-by: Caleb Connolly <[email protected]>
| -rw-r--r-- | drivers/serial/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 8b19e2684e5..1fe4607598e 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -321,7 +321,7 @@ config DEBUG_UART_S5P config DEBUG_UART_MSM bool "Qualcomm QUP UART debug" - depends on ARCH_SNAPDRAGON + depends on ARCH_SNAPDRAGON || ARCH_IPQ40XX help Select this to enable a debug UART using the serial_msm driver. You will need to provide parameters to make this work. The driver will |
