mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
serial: 8250: bcm2835aux - defer if clock is zero
See: https://github.com/raspberrypi/linux/issues/3700 Signed-off-by: Phil Elwell <phil@raspberrypi.com>
This commit is contained in:
@@ -148,6 +148,13 @@ static int bcm2835aux_serial_probe(struct platform_device *pdev)
|
||||
*/
|
||||
up.port.uartclk = clk_get_rate(data->clk) * 2;
|
||||
|
||||
/* The clock is only queried at probe time, which means we get one shot
|
||||
* at this. A zero clock is never going to work and is almost certainly
|
||||
* due to a parent not being ready, so prefer to defer.
|
||||
*/
|
||||
if (!up.port.uartclk)
|
||||
return -EPROBE_DEFER;
|
||||
|
||||
/* register the port */
|
||||
ret = serial8250_register_8250_port(&up);
|
||||
if (ret < 0) {
|
||||
|
||||
Reference in New Issue
Block a user