diff options
author | Rasmus Villemoes <rasmus.villemoes@prevas.dk> | 2024-05-28 13:13:21 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2024-06-16 12:14:00 +0200 |
commit | 945fc278226cf2de432ac9ccf56b23520300afce (patch) | |
tree | 86b83f81da08f9759c97af5de6c0e3351dc655b2 | |
parent | 4388ada7690e977f34cdab78b0df5c185a9e3c67 (diff) | |
download | u-boot-945fc278226cf2de432ac9ccf56b23520300afce.tar.gz |
serial: ns16550: fix comment to mention schedule instead of watchdog_reset
watchdog_reset() is no more. Make the comments match the code and
today's reality.
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | drivers/serial/ns16550.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 4963385dc1c..42b69719dd7 100644 --- a/drivers/serial/ns16550.c +++ b/drivers/serial/ns16550.c @@ -291,9 +291,9 @@ void ns16550_putc(struct ns16550 *com_port, char c) serial_out(c, &com_port->thr); /* - * Call watchdog_reset() upon newline. This is done here in putc + * Call schedule() upon newline. This is done here in putc * since the environment code uses a single puts() to print the complete - * environment upon "printenv". So we can't put this watchdog call + * environment upon "printenv". So we can't put this schedule call * in puts(). */ if (c == '\n') @@ -390,9 +390,9 @@ static int ns16550_serial_putc(struct udevice *dev, const char ch) serial_out(ch, &com_port->thr); /* - * Call watchdog_reset() upon newline. This is done here in putc + * Call schedule() upon newline. This is done here in putc * since the environment code uses a single puts() to print the complete - * environment upon "printenv". So we can't put this watchdog call + * environment upon "printenv". So we can't put this schedule call * in puts(). */ if (ch == '\n') |