diff options
| author | Robert Marko <[email protected]> | 2024-04-15 12:49:26 +0200 |
|---|---|---|
| committer | Caleb Connolly <[email protected]> | 2024-04-23 13:29:14 +0200 |
| commit | 615a3e909e36d7e615f5da1c2c46e58e0025d23f (patch) | |
| tree | b611d4cae796d4c5337d4d55074c7aec74c4f30c /drivers | |
| parent | 6b163a63e5705bff12491ea7e3b67cef9a6bfc05 (diff) | |
serial: msm_serial: remove .clk_rate from debug UART
MSM serial in DEBUG UART mode is trying to set .clk_rate, but the
msm_serial_data structure does not have such property at all, so lets
remove it as otherwise it will fail compiling.
Fixes: 90023bdfe979 ("serial: msm: add debug UART")
Signed-off-by: Robert Marko <[email protected]>
Reviewed-by: Caleb Connolly <[email protected]>
Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/serial/serial_msm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/serial/serial_msm.c b/drivers/serial/serial_msm.c index ac4280c6c4c..8044d38518d 100644 --- a/drivers/serial/serial_msm.c +++ b/drivers/serial/serial_msm.c @@ -242,7 +242,6 @@ U_BOOT_DRIVER(serial_msm) = { static struct msm_serial_data init_serial_data = { .base = CONFIG_VAL(DEBUG_UART_BASE), - .clk_rate = 7372800, }; #include <debug_uart.h> |
