-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the (un)load message more specific to differentiate it from the sfc.ko messages. Signed-off-by: Martin Habets <habetsm.xilinx@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
- Loading branch information
Martin Habets
authored and
Jakub Kicinski
committed
May 10, 2022
1 parent
782f713
commit c5a13c3
Showing
5 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
config SFC_SIENA | ||
tristate "Solarflare SFC9000 support" | ||
depends on PCI | ||
select MDIO | ||
select CRC32 | ||
help | ||
This driver supports 10-gigabit Ethernet cards based on | ||
the Solarflare SFC9000 controller. | ||
|
||
To compile this driver as a module, choose M here. The module | ||
will be called sfc-siena. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
sfc-siena-y += farch.o siena.o \ | ||
efx.o efx_common.o efx_channels.o nic.o \ | ||
tx.o tx_common.o rx.o rx_common.o \ | ||
selftest.o ethtool.o ethtool_common.o ptp.o \ | ||
mcdi.o mcdi_port.o mcdi_port_common.o \ | ||
mcdi_mon.o | ||
sfc-siena-$(CONFIG_SFC_MTD) += mtd.o | ||
sfc-siena-$(CONFIG_SFC_SRIOV) += siena_sriov.o | ||
|
||
obj-$(CONFIG_SFC_SIENA) += sfc-siena.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters