diff options
author | Alex Maftei (amaftei) <amaftei@solarflare.com> | 2020-01-08 19:10:59 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-01-09 00:28:02 +0300 |
commit | 82c64484024af04489bb1870bd1c6b61c603ca78 (patch) | |
tree | 5475147b15b8094c93634e6debb63a6577b9085c /drivers/net/ethernet/sfc/Makefile | |
parent | b194045114c234f73a6c3831fbcde0f4161bddf0 (diff) | |
download | linux-82c64484024af04489bb1870bd1c6b61c603ca78.tar.xz |
sfc: move reset workqueue code
Small functions doing work that will be common, related to reset
workqueue management.
Signed-off-by: Alexandru-Mihai Maftei <amaftei@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/Makefile')
-rw-r--r-- | drivers/net/ethernet/sfc/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/ethernet/sfc/Makefile b/drivers/net/ethernet/sfc/Makefile index c5c297e78d06..7022cffa31f8 100644 --- a/drivers/net/ethernet/sfc/Makefile +++ b/drivers/net/ethernet/sfc/Makefile @@ -1,7 +1,10 @@ # SPDX-License-Identifier: GPL-2.0 -sfc-y += efx.o nic.o farch.o siena.o ef10.o tx.o rx.o \ +sfc-y += efx.o efx_common.o nic.o \ + farch.o siena.o ef10.o \ + tx.o rx.o \ selftest.o ethtool.o ptp.o tx_tso.o \ - mcdi.o mcdi_port.o mcdi_mon.o + mcdi.o mcdi_port.o \ + mcdi_mon.o sfc-$(CONFIG_SFC_MTD) += mtd.o sfc-$(CONFIG_SFC_SRIOV) += sriov.o siena_sriov.o ef10_sriov.o |