netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bagas Sanjaya <bagasdotme@gmail.com>
To: Veerasenareddy Burru <vburru@marvell.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	lironh@marvell.com, aayarekar@marvell.com, sedara@marvell.com,
	sburla@marvell.com, linux-doc@vger.kernel.org,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
	Jonathan Corbet <corbet@lwn.net>, Andrew Lunn <andrew@lunn.ch>,
	Lorenzo Bianconi <lorenzo@kernel.org>
Subject: Re: [PATCH net-next 1/8] octeon_ep_vf: Add driver framework and device initialization
Date: Thu, 10 Nov 2022 09:47:52 +0700	[thread overview]
Message-ID: <Y2xmWCJBiSsSDtMJ@debian.me> (raw)
In-Reply-To: <20221108204209.23071-2-vburru@marvell.com>

[-- Attachment #1: Type: text/plain, Size: 2122 bytes --]

On Tue, Nov 08, 2022 at 12:41:52PM -0800, Veerasenareddy Burru wrote:
> Add driver framework and device setup and initialization for Octeon
> PCI Endpoint NIC VF.
> 
> Add implementation to load module, initilaize, register network device,
> cleanup and unload module.
>

s/initilaize/initialize/

> diff --git a/Documentation/networking/device_drivers/ethernet/marvell/octeon_ep_vf.rst b/Documentation/networking/device_drivers/ethernet/marvell/octeon_ep_vf.rst
> new file mode 100644
> index 000000000000..258229610f3e
> --- /dev/null
> +++ b/Documentation/networking/device_drivers/ethernet/marvell/octeon_ep_vf.rst
> @@ -0,0 +1,19 @@
> +.. SPDX-License-Identifier: GPL-2.0+
> +
> +=======================================================================
> +Linux kernel networking driver for Marvell's Octeon PCI Endpoint NIC VF
> +=======================================================================
> +
> +Network driver for Marvell's Octeon PCI EndPoint NIC VF.
> +Copyright (c) 2020 Marvell International Ltd.
> +
> +Overview
> +========
> +This driver implements networking functionality of Marvell's Octeon PCI
> +EndPoint NIC VF.
> +
> +Supported Devices
> +=================
> +Currently, this driver support following devices:
> + * Network controller: Cavium, Inc. Device b203
> + * Network controller: Cavium, Inc. Device b403

As kernel test robot has reported [1], you need to add the doc to toctree
(index):

---- >8 ----

diff --git a/Documentation/networking/device_drivers/ethernet/index.rst b/Documentation/networking/device_drivers/ethernet/index.rst
index 5196905582c5b3..ccb7baf83b0ad9 100644
--- a/Documentation/networking/device_drivers/ethernet/index.rst
+++ b/Documentation/networking/device_drivers/ethernet/index.rst
@@ -39,6 +39,7 @@ Contents:
    intel/ice
    marvell/octeontx2
    marvell/octeon_ep
+   marvell/octeon_ep_vf
    mellanox/mlx5
    microsoft/netvsc
    neterion/s2io

Thanks.

[1] https://lore.kernel.org/linux-doc/202211092349.9UIWX9cD-lkp@intel.com/

-- 
An old man doll... just what I always wanted! - Clara

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  parent reply	other threads:[~2022-11-10  2:48 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-08 20:41 [PATCH net-next 0/8] Add octeon_ep_vf driver Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 1/8] octeon_ep_vf: Add driver framework and device initialization Veerasenareddy Burru
2022-11-09 16:02   ` kernel test robot
2022-11-10  2:47   ` Bagas Sanjaya [this message]
2022-11-08 20:41 ` [PATCH net-next 2/8] octeon_ep_vf: add hardware configuration APIs Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 3/8] octeon_ep_vf: add VF-PF mailbox communication Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 4/8] octeon_ep_vf: add Tx/Rx ring resource setup and cleanup Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 5/8] octeon_ep_vf: add support for ndo ops Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 6/8] octeon_ep_vf: add Tx/Rx processing and interrupt support Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 7/8] octeon_ep_vf: add ethtool support Veerasenareddy Burru
2022-11-08 20:41 ` [PATCH net-next 8/8] octeon_ep_vf: update MAINTAINERS Veerasenareddy Burru
2022-11-10 10:07 ` [PATCH net-next 0/8] Add octeon_ep_vf driver Leon Romanovsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y2xmWCJBiSsSDtMJ@debian.me \
    --to=bagasdotme@gmail.com \
    --cc=aayarekar@marvell.com \
    --cc=andrew@lunn.ch \
    --cc=corbet@lwn.net \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lironh@marvell.com \
    --cc=lorenzo@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=sburla@marvell.com \
    --cc=sedara@marvell.com \
    --cc=vburru@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).