36 lines · plain
1################################################################################2#3# Linux driver for VMware's vmxnet3 ethernet NIC.4#5# Copyright (C) 2007-2024, VMware, Inc. All Rights Reserved.6#7# This program is free software; you can redistribute it and/or modify it8# under the terms of the GNU General Public License as published by the9# Free Software Foundation; version 2 of the License and no later version.10#11# This program is distributed in the hope that it will be useful, but12# WITHOUT ANY WARRANTY; without even the implied warranty of13# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or14# NON INFRINGEMENT. See the GNU General Public License for more15# details.16#17# You should have received a copy of the GNU General Public License18# along with this program; if not, write to the Free Software19# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.20#21# The full GNU General Public License is included in this distribution in22# the file called "COPYING".23#24# Maintained by: pv-drivers@vmware.com25#26#27################################################################################28 29#30# Makefile for the VMware vmxnet3 ethernet NIC driver31#32 33obj-$(CONFIG_VMXNET3) += vmxnet3.o34 35vmxnet3-objs := vmxnet3_drv.o vmxnet3_ethtool.o vmxnet3_xdp.o36