From patchwork Sat Aug 22 23:13:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 262072 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 5C222C433E3 for ; Sat, 22 Aug 2020 23:14:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2D036206B5 for ; Sat, 22 Aug 2020 23:14:00 +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="z20Zptkk" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728412AbgHVXN7 (ORCPT ); Sat, 22 Aug 2020 19:13:59 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37406 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728133AbgHVXNx (ORCPT ); Sat, 22 Aug 2020 19:13:53 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 17F5AC061573 for ; Sat, 22 Aug 2020 16:13:53 -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=v0B/+HI6ggac/A7ReSzJ51fZmoHn2VaJGqjN9k4WXks=; b=z20ZptkkIquGhsNSoJIetLFhpc 6TVl658IxST5bhwlHPgFKqalvYMpwQDlG6jTQdYA7fPDGmo3aCp6k6cm5ozgimExkxEq+3vIdvGGV EfFiVqzEJidvz4WqPDmUnZdw0I90t1whRGHN7atoVTmSe6XzIU7aC6j9AOtdmjthyhRy3wfxYhPtS LEVstbZzDBijr1iQxXTSbpnZursozFayZdukEQZFp639WRsyf57r8cfO0329JHVzjk3C0bmRA01Dc P5K88G5tbwoNXtTji3pfXrTtkVEZbYFlqaFGy170fTDzwynupHwmM8ir6DQio0ChoMOGeE6E4B8SG dz1Gljqw==; 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 1k9chq-0006Nf-OV; Sat, 22 Aug 2020 23:13:51 +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 3/8] net: batman-adv: hard-interface.c: delete duplicated word + fix punctuation Date: Sat, 22 Aug 2020 16:13:30 -0700 Message-Id: <20200822231335.31304-4-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 "table". End a sentence with a period. 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/hard-interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200731.orig/net/batman-adv/hard-interface.c +++ linux-next-20200731/net/batman-adv/hard-interface.c @@ -599,7 +599,7 @@ out: /* report to the other components the maximum amount of bytes that * batman-adv can send over the wire (without considering the payload * overhead). For example, this value is used by TT to compute the - * maximum local table table size + * maximum local table size. */ atomic_set(&bat_priv->packet_size_max, min_mtu);