Re: [PATCH] tty: hvc: Fix incorrect formatted output

2024-11-06 Thread Jiri Slaby
On 07. 11. 24, 8:47, Jiri Slaby wrote: On 07. 11. 24, 8:33, liujing wrote: The termno parameter is defined as an unsigned int in hvc_opal_probe(), So the output format should be %u instead of %d. Signed-off-by: liujing --- v1 -> V2: Modified the description of commit. Yet, this is a v2, but

Re: [PATCH] tty: hvc: Fix incorrect formatted output

2024-11-06 Thread Jiri Slaby
On 07. 11. 24, 8:33, liujing wrote: The termno parameter is defined as an unsigned int in hvc_opal_probe(), So the output format should be %u instead of %d. Signed-off-by: liujing --- v1 -> V2: Modified the description of commit. diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_o

[PATCH] tty: hvc: Fix incorrect formatted output

2024-11-06 Thread liujing
The termno parameter is defined as an unsigned int in hvc_opal_probe(), So the output format should be %u instead of %d. Signed-off-by: liujing --- v1 -> V2: Modified the description of commit. diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c index 095c33ad10f8..1d2e7f2ce08