From patchwork Thu Aug 31 10:41:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 808168 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xjf7c5V90z9sQl for ; Thu, 31 Aug 2017 20:41:48 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751276AbdHaKlq (ORCPT ); Thu, 31 Aug 2017 06:41:46 -0400 Received: from mga02.intel.com ([134.134.136.20]:44618 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750757AbdHaKlp (ORCPT ); Thu, 31 Aug 2017 06:41:45 -0400 Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Aug 2017 03:41:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,451,1498546800"; d="scan'208";a="124330536" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga004.jf.intel.com with ESMTP; 31 Aug 2017 03:41:43 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.71]) by imail001.iil.intel.com with ESMTP id v7VAftvr019310; Thu, 31 Aug 2017 13:41:55 +0300 From: Rami Rosen To: davem@davemloft.net Cc: netdev@vger.kernel.org, jasowang@redhat.com, Rami Rosen Subject: [PATCH net-next] net: fix two typos in net_device_ops documentation. Date: Thu, 31 Aug 2017 13:41:40 +0300 Message-Id: <1504176100-28914-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch fixes two trivial typos in net_device_ops documentation, related to ndo_xdp_flush callback. Signed-off-by: Rami Rosen --- include/linux/netdevice.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 29bf06f..35de831 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1124,8 +1124,8 @@ struct xfrmdev_ops { * This function is used to submit a XDP packet for transmit on a * netdevice. * void (*ndo_xdp_flush)(struct net_device *dev); - * This function is used to inform the driver to flush a paticular - * xpd tx queue. Must be called on same CPU as xdp_xmit. + * This function is used to inform the driver to flush a particular + * xdp tx queue. Must be called on same CPU as xdp_xmit. */ struct net_device_ops { int (*ndo_init)(struct net_device *dev);