From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH] iavh: fix a typo Date: Sun, 23 Sep 2018 10:21:01 +0300 Message-ID: <20180923072101.5764-1-ramirose@gmail.com> Cc: netdev@vger.kernel.org, Rami Rosen To: jeffrey.t.kirsher@intel.com Return-path: Received: from mail-wr1-f65.google.com ([209.85.221.65]:36521 "EHLO mail-wr1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726035AbeIWNR7 (ORCPT ); Sun, 23 Sep 2018 09:17:59 -0400 Received: by mail-wr1-f65.google.com with SMTP id e1-v6so16602770wrt.3 for ; Sun, 23 Sep 2018 00:21:30 -0700 (PDT) Sender: netdev-owner@vger.kernel.org List-ID: This trivial patch fixes a typo in iavf.h. Signed-off-by: Rami Rosen --- drivers/net/ethernet/intel/iavf/iavf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/iavf/iavf.h b/drivers/net/ethernet/intel/iavf/iavf.h index a512f7521841..272d76b733aa 100644 --- a/drivers/net/ethernet/intel/iavf/iavf.h +++ b/drivers/net/ethernet/intel/iavf/iavf.h @@ -342,7 +342,7 @@ struct iavf_adapter { struct iavf_channel_config ch_config; u8 num_tc; struct list_head cloud_filter_list; - /* lock to protest access to the cloud filter list */ + /* lock to protect access to the cloud filter list */ spinlock_t cloud_filter_list_lock; u16 num_cloud_filters; }; -- 2.17.1