From patchwork Wed Jan 22 09:29:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 233374 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.7 required=3.0 tests=DATE_IN_PAST_03_06, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1780CC2D0DB for ; Wed, 22 Jan 2020 13:29:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DF0B820678 for ; Wed, 22 Jan 2020 13:29:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579699781; bh=a+oUUi/Eq9wtmJ0uC2kz39yWnHxwcBFNJ1IY5b5Ires=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=XSE/GGOXTKuWpmNHQO9Q/2h3bmK9yXt702mn0nyyDG9ZTcMPwSTy39L4gI3v06Z4k 91X5a25VHtQwouVY0n2pgsFMGAQB1KQq3AriUPnCF1Z/YKxuNJDhoTIOFgp+8q12xO vsF/CT7x8BxKrLGdV1u6msoRQSLWHJyIkKzUsMbA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730138AbgAVN0n (ORCPT ); Wed, 22 Jan 2020 08:26:43 -0500 Received: from mail.kernel.org ([198.145.29.99]:47602 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729130AbgAVN0l (ORCPT ); Wed, 22 Jan 2020 08:26:41 -0500 Received: from localhost (unknown [84.241.205.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D11212467B; Wed, 22 Jan 2020 13:26:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579699600; bh=a+oUUi/Eq9wtmJ0uC2kz39yWnHxwcBFNJ1IY5b5Ires=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wdoCXVTNFVw9gBdf+8GCF0dmV2C6OgUlkwW5802HCDqTH8vLrJDDlNjkhdDQI10BF 8PLP9Gj88SGp9QKa68SjYDLnyimEoX5sWCAxxNujaCGnaikxYX0fDM2OAsUwaAdQfv jl8N/OkneTqRYKE7DgWTWe/zA5XKRIKlDQ/fdajE= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Andrew Lunn , Alexander Lobakin , Florian Fainelli , Hauke Mehrtens , "David S. Miller" Subject: [PATCH 5.4 155/222] net: dsa: tag_gswip: fix typo in tagger name Date: Wed, 22 Jan 2020 10:29:01 +0100 Message-Id: <20200122092844.817186226@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200122092833.339495161@linuxfoundation.org> References: <20200122092833.339495161@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Alexander Lobakin [ Upstream commit ad32205470919c8e04cdd33e0613bdba50c2376d ] The correct name is GSWIP (Gigabit Switch IP). Typo was introduced in 875138f81d71a ("dsa: Move tagger name into its ops structure") while moving tagger names to their structures. Fixes: 875138f81d71a ("dsa: Move tagger name into its ops structure") Reviewed-by: Andrew Lunn Signed-off-by: Alexander Lobakin Reviewed-by: Florian Fainelli Acked-by: Hauke Mehrtens Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/dsa/tag_gswip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/dsa/tag_gswip.c +++ b/net/dsa/tag_gswip.c @@ -104,7 +104,7 @@ static struct sk_buff *gswip_tag_rcv(str } static const struct dsa_device_ops gswip_netdev_ops = { - .name = "gwsip", + .name = "gswip", .proto = DSA_TAG_PROTO_GSWIP, .xmit = gswip_tag_xmit, .rcv = gswip_tag_rcv,