Re: [PATCH v2] serial: pl01x: set baudrate when probing

2024-03-07 Thread Tom Rini
On Wed, Feb 28, 2024 at 06:57:52PM +0800, Yang Xiwen via B4 Relay wrote: > From: Yang Xiwen > > It is found that when DM is enabled, only generic init function is > called in .probe(). Baudrate is never honored. Add a function call > to .setbrg() when probing so that we can update the baudrate o

[PATCH v2] serial: pl01x: set baudrate when probing

2024-02-28 Thread Yang Xiwen via B4 Relay
From: Yang Xiwen It is found that when DM is enabled, only generic init function is called in .probe(). Baudrate is never honored. Add a function call to .setbrg() when probing so that we can update the baudrate of the serial device. Signed-off-by: Yang Xiwen --- Changes in v2: - reverse if sta