diff options
author | Shannon Nelson <snelson@pensando.io> | 2019-09-04 01:28:04 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-05 10:24:43 +0300 |
commit | df69ba43217d3cf4215c83c0627ce98a26e56e7c (patch) | |
tree | c2b959660ec3159575f9249cfb2339f4886c4beb /drivers/net/ethernet/pensando/ionic/Makefile | |
parent | 7d5aa9a524db04c1bf65a49442ac0b5186f70857 (diff) | |
download | linux-df69ba43217d3cf4215c83c0627ce98a26e56e7c.tar.xz |
ionic: Add basic framework for IONIC Network device driver
This patch adds a basic driver framework for the Pensando IONIC
network device. There is no functionality right now other than
the ability to load and unload.
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/pensando/ionic/Makefile')
-rw-r--r-- | drivers/net/ethernet/pensando/ionic/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/Makefile b/drivers/net/ethernet/pensando/ionic/Makefile new file mode 100644 index 000000000000..f174e8f7bce1 --- /dev/null +++ b/drivers/net/ethernet/pensando/ionic/Makefile @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0 +# Copyright(c) 2017 - 2019 Pensando Systems, Inc + +obj-$(CONFIG_IONIC) := ionic.o + +ionic-y := ionic_main.o ionic_bus_pci.o ionic_devlink.o |