From patchwork Tue Feb 13 23:26:47 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bryan Whitehead X-Patchwork-Id: 873196 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 3zgzDg2hDXz9t3C for ; Wed, 14 Feb 2018 10:25:55 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966102AbeBMXZw (ORCPT ); Tue, 13 Feb 2018 18:25:52 -0500 Received: from esa4.microchip.iphmx.com ([68.232.154.123]:30435 "EHLO esa4.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965783AbeBMXZw (ORCPT ); Tue, 13 Feb 2018 18:25:52 -0500 X-IronPort-AV: E=Sophos;i="5.46,509,1511852400"; d="scan'208";a="11120652" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa4.microchip.iphmx.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 13 Feb 2018 16:25:50 -0700 Received: from BW-Ubuntu-tester.mchp-main.com (10.10.76.4) by chn-sv-exch07.mchp-main.com (10.10.76.108) with Microsoft SMTP Server id 14.3.352.0; Tue, 13 Feb 2018 16:25:50 -0700 From: Bryan Whitehead To: CC: , Subject: [PATCH v1 net-next 0/3] lan743x: Add new lan743x driver Date: Tue, 13 Feb 2018 18:26:47 -0500 Message-ID: <1518564410-8020-1-git-send-email-Bryan.Whitehead@microchip.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add new lan743x driver. The lan743x from Microchip Technologies Inc, is a PCIe to Gigabit Ethernet Controller. Bryan Whitehead (3): lan743x: Add main source file for new lan743x driver lan743x: Update Kconfig and Makefile to include lan743x driver lan743x: Update MAINTAINERS to include lan743x driver maintainers MAINTAINERS | 7 + drivers/net/ethernet/microchip/Kconfig | 9 + drivers/net/ethernet/microchip/Makefile | 3 + drivers/net/ethernet/microchip/lan743x_main.c | 2964 +++++++++++++++++++++++++ drivers/net/ethernet/microchip/lan743x_main.h | 1331 +++++++++++ 5 files changed, 4314 insertions(+) create mode 100644 drivers/net/ethernet/microchip/lan743x_main.c create mode 100644 drivers/net/ethernet/microchip/lan743x_main.h