From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E03D9C32771 for ; Wed, 28 Sep 2022 18:23:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232974AbiI1SXu (ORCPT ); Wed, 28 Sep 2022 14:23:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36660 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233776AbiI1SXn (ORCPT ); Wed, 28 Sep 2022 14:23:43 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8665C101956; Wed, 28 Sep 2022 11:23:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1664389422; x=1695925422; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=mafWaAJGdDQya+zyqgkZLQXkrmmI+H/d5whBuw3Clpc=; b=ZPqP4ywHwEq1tnXQG1V70Zygp00jrgOz9gxGEzH8R/LIWxx5YzTJkMSp 9x3zyxVtwbXqUxrWHALG85jq0FLdfaVaiY5p1V+cpMn/2UZgrubmz3YDB jN3NAs/TCcVbgEbI4eg4BXKOH/TYvIyTnrk6l+JAaLgdciSr6/wAdegFz YSUXGvq1nVintWssTSVohHmhuDtPacYNl7JWkPMX5m1olwQT7Fmn+c2qB /omNM/TGsOkH8lDq2clwXT3eXlQRnZ/Pqonm0F+KnG9j75q7hTaGqxdPc eyeYLy7r0LD+tPOhQl6974tPka7bqEZ6v7ynnvFW9SgFd0n9M3rfwowPk A==; X-IronPort-AV: E=Sophos;i="5.93,352,1654585200"; d="scan'208";a="115880602" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa6.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 28 Sep 2022 11:23:41 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.12; Wed, 28 Sep 2022 11:23:39 -0700 Received: from localhost (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2507.12 via Frontend Transport; Wed, 28 Sep 2022 11:23:39 -0700 Date: Wed, 28 Sep 2022 20:28:08 +0200 From: Horatiu Vultur To: Colin Ian King CC: , "David S . Miller" , Eric Dumazet , Jakub Kicinski , "Paolo Abeni" , , , Subject: Re: [PATCH][next] net: lan966x: Fix spelling mistake "tarffic" -> "traffic" Message-ID: <20220928182808.gsfwyjlmunxl7k6z@soft-dev3-1.localhost> References: <20220928143618.34947-1-colin.i.king@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline In-Reply-To: <20220928143618.34947-1-colin.i.king@gmail.com> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The 09/28/2022 15:36, Colin Ian King wrote: > > There is a spelling mistake in a netdev_err message. Fix it. Reviewed-by: Horatiu Vultur > > Signed-off-by: Colin Ian King > --- > drivers/net/ethernet/microchip/lan966x/lan966x_mqprio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/ethernet/microchip/lan966x/lan966x_mqprio.c b/drivers/net/ethernet/microchip/lan966x/lan966x_mqprio.c > index 950ea4807eb6..7fa76e74f9e2 100644 > --- a/drivers/net/ethernet/microchip/lan966x/lan966x_mqprio.c > +++ b/drivers/net/ethernet/microchip/lan966x/lan966x_mqprio.c > @@ -7,7 +7,7 @@ int lan966x_mqprio_add(struct lan966x_port *port, u8 num_tc) > u8 i; > > if (num_tc != NUM_PRIO_QUEUES) { > - netdev_err(port->dev, "Only %d tarffic classes supported\n", > + netdev_err(port->dev, "Only %d traffic classes supported\n", > NUM_PRIO_QUEUES); > return -EINVAL; > } > -- > 2.37.1 > -- /Horatiu