diff options
author | Dexuan Cui <decui@microsoft.com> | 2021-04-16 23:11:59 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-04-20 01:24:25 +0300 |
commit | ca9c54d2d6a5ab2430c4eda364c77125d62e5e0f (patch) | |
tree | 7c4512c4d09e1f6438e6aaa68e45401ccbe9462d /drivers/net/ethernet/microsoft/mana/Makefile | |
parent | 83c1ca257aca5ecf776858d8a917fcd18623b708 (diff) | |
download | linux-ca9c54d2d6a5ab2430c4eda364c77125d62e5e0f.tar.xz |
net: mana: Add a driver for Microsoft Azure Network Adapter (MANA)
Add a VF driver for Microsoft Azure Network Adapter (MANA) that will be
available in the future.
Co-developed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Co-developed-by: Shachar Raindel <shacharr@microsoft.com>
Signed-off-by: Shachar Raindel <shacharr@microsoft.com>
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/microsoft/mana/Makefile')
-rw-r--r-- | drivers/net/ethernet/microsoft/mana/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/ethernet/microsoft/mana/Makefile b/drivers/net/ethernet/microsoft/mana/Makefile new file mode 100644 index 000000000000..0edd5bb685f3 --- /dev/null +++ b/drivers/net/ethernet/microsoft/mana/Makefile @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause +# +# Makefile for the Microsoft Azure Network Adapter driver + +obj-$(CONFIG_MICROSOFT_MANA) += mana.o +mana-objs := gdma_main.o shm_channel.o hw_channel.o mana_en.o mana_ethtool.o |