Re: [PATCH 1/2] usb: atm: ueagle-atm: adjust 'device found' message
From: Greg Kroah-Hartman
Date: Sat May 16 2026 - 03:19:53 EST
On Fri, May 15, 2026 at 08:54:12PM -0300, Mauricio Faria de Oliveira wrote:
> Correct the verb form and add 'with' for clarity.
>
> Signed-off-by: Mauricio Faria de Oliveira <mfo@xxxxxxxxxx>
> ---
> drivers/usb/atm/ueagle-atm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c
> index f3ae72feb5bfc313ccfa1ab6a9bb40fcd8f5800a..2730e7d41c89a354e115e38d97e314f888c62137 100644
> --- a/drivers/usb/atm/ueagle-atm.c
> +++ b/drivers/usb/atm/ueagle-atm.c
> @@ -2590,7 +2590,7 @@ static int uea_probe(struct usb_interface *intf, const struct usb_device_id *id)
> int ret;
>
> uea_enters(usb);
> - uea_info(usb, "ADSL device founded vid (%#X) pid (%#X) Rev (%#X): %s\n",
> + uea_info(usb, "ADSL device found with vid (%#X) pid (%#X) Rev (%#X): %s\n",
> le16_to_cpu(usb->descriptor.idVendor),
> le16_to_cpu(usb->descriptor.idProduct),
> le16_to_cpu(usb->descriptor.bcdDevice),
When drivers work properly, they are quiet, so that means this line
should be removed entirely.
thanks,
greg k-h