From patchwork Sat Aug 22 23:13:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 262070 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=-9.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 483D0C433DF for ; Sat, 22 Aug 2020 23:14:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 121B8206B5 for ; Sat, 22 Aug 2020 23:14:12 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="09huZ4Qu" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728523AbgHVXOI (ORCPT ); Sat, 22 Aug 2020 19:14:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37448 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728454AbgHVXOG (ORCPT ); Sat, 22 Aug 2020 19:14:06 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4EC5BC061573 for ; Sat, 22 Aug 2020 16:14:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=AQKkkVjR6UlOMmTuk0bmVSARYGJQD8WUkNffq9263Ig=; b=09huZ4QuQms/HGGmKr8GiUaoMU eEWcvgiEbMYVD9vpcLxuy98HW1sJptUl6/lpX80smJBREON2ti7Fze5nc79fTLbm8X9QGyCUUOWf/ olUQnoTFcT33Cne8c8r7L9+m4yj4IDKn+CN4uGjCu9cBwDh5TmlJCNfgKoD3OjaHY3FLhPY4imfmR QTuxdooQ4bgnZ65Ix5KtYcUfkIRafjaazbd0EYWcfX1D76F/n/RZjy3agoAONSHBrh8pwpfHAMapJ TmZssahddBVSFwjslp5N0tdS46a7EQoduoeiVNuvk03UDVNQ3eEItWF4UWWbeNEBIC1zh2ykLzjvd 6J+hBPJA==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ci3-0006Nf-Qz; Sat, 22 Aug 2020 23:14:04 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Marek Lindner , Simon Wunderlich , Antonio Quartulli , Sven Eckelmann , b.a.t.m.a.n@lists.open-mesh.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 7/8] net: batman-adv: soft-interface.c: delete duplicated words Date: Sat, 22 Aug 2020 16:13:34 -0700 Message-Id: <20200822231335.31304-8-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231335.31304-1-rdunlap@infradead.org> References: <20200822231335.31304-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "the" in two places. Signed-off-by: Randy Dunlap Cc: Marek Lindner Cc: Simon Wunderlich Cc: Antonio Quartulli Cc: Sven Eckelmann Cc: b.a.t.m.a.n@lists.open-mesh.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/batman-adv/soft-interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200731.orig/net/batman-adv/soft-interface.c +++ linux-next-20200731/net/batman-adv/soft-interface.c @@ -649,7 +649,7 @@ static void batadv_softif_destroy_vlan(s /** * batadv_interface_add_vid() - ndo_add_vid API implementation * @dev: the netdev of the mesh interface - * @proto: protocol of the the vlan id + * @proto: protocol of the vlan id * @vid: identifier of the new vlan * * Set up all the internal structures for handling the new vlan on top of the @@ -707,7 +707,7 @@ static int batadv_interface_add_vid(stru /** * batadv_interface_kill_vid() - ndo_kill_vid API implementation * @dev: the netdev of the mesh interface - * @proto: protocol of the the vlan id + * @proto: protocol of the vlan id * @vid: identifier of the deleted vlan * * Destroy all the internal structures used to handle the vlan identified by vid