From patchwork Thu Jun 24 12:06:01 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tree Davies X-Patchwork-Id: 466737 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=-17.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_SANE_1 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 6B3FCC49EA6 for ; Thu, 24 Jun 2021 12:06:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4966F613EB for ; Thu, 24 Jun 2021 12:06:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230257AbhFXMId (ORCPT ); Thu, 24 Jun 2021 08:08:33 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:56649 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230241AbhFXMIb (ORCPT ); Thu, 24 Jun 2021 08:08:31 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id AA71512757B; Thu, 24 Jun 2021 08:06:12 -0400 (EDT) (envelope-from tdavies@darkphysics.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=date:from :to:cc:subject:message-id:mime-version:content-type; s=sasl; bh= j8rQrshbvNd0uPBvyfgmlh5xUyZNgnP8aHq0npBHc5s=; b=G+v8TewOzwdjp0p2 Bxphv8Q4GtPYbQs8WVKwxwl81dDKU1V5ujoCh7seUuur9Wnzvz7aPj7bKZ9mpjOa iGPwWcKusE2aKpo/GhleoF69nefnjciVHMANq4/kLELhNQVeZjqsG7cQrxRKzPld xpCNOhd8wQ5zS+I2EEHxzqgdkF4= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id A39FC12757A; Thu, 24 Jun 2021 08:06:12 -0400 (EDT) (envelope-from tdavies@darkphysics.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=darkphysics.net; h=date:from:to:cc:subject:message-id:mime-version:content-type; s=2019-09.pbsmtp; bh=j8rQrshbvNd0uPBvyfgmlh5xUyZNgnP8aHq0npBHc5s=; b=r0qsKzRmXhFkMDXQtG5r6Xp3zx+XwDutAKZMEvyflZw/I5pevQU8DQ9Gvb17QnMwEcJdRzZUT6tEo211qdZwm+0xrAY/4a1wFMCONS9I3/eMEtHzmToINfL1mszSw8X6aPAtTyF450yzg+4+62wflpwlASy32chPsGEC5pRAPn0= Received: from oatmeal.darkphysics (unknown [24.19.107.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 015CC127579; Thu, 24 Jun 2021 08:06:09 -0400 (EDT) (envelope-from tdavies@darkphysics.net) Date: Thu, 24 Jun 2021 05:06:01 -0700 From: Tree Davies To: tdavies@darkphysics.net, netdev@vger.kernel.org Cc: intel-wired-lan@lists.osuosl.org, linux-kernel@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH v1 1/1] net/e1000e: Fix spelling mistake "The" -> "This" Message-ID: <20210624120511.GA6221@oatmeal.darkphysics> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Pobox-Relay-ID: 9026903A-D4E4-11EB-B14D-D5C30F5B5667-45285927!pb-smtp20.pobox.com Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org There is a spelling mistake in the comment block. Signed-off-by: Tree Davies --- drivers/net/ethernet/intel/e1000e/netdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c index 88e9035b75cf..ff267cf75ef8 100644 --- a/drivers/net/ethernet/intel/e1000e/netdev.c +++ b/drivers/net/ethernet/intel/e1000e/netdev.c @@ -7674,7 +7674,7 @@ static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent) * @pdev: PCI device information struct * * e1000_remove is called by the PCI subsystem to alert the driver - * that it should release a PCI device. The could be caused by a + * that it should release a PCI device. This could be caused by a * Hot-Plug event, or because the driver is going to be removed from * memory. **/