diff options
author | Eric Joyner <erj@FreeBSD.org> | 2025-02-26 17:19:38 +0000 |
---|---|---|
committer | Eric Joyner <erj@FreeBSD.org> | 2025-02-26 18:15:38 +0000 |
commit | 7ee310c80ea7b336972f53cc48b8c3d03029941e (patch) | |
tree | 51f1e5674154c2d5b6e5a4c2cb7dfa6c5950f487 | |
parent | e2dd73cf45a6a8d97131bdbe512ab1ff63121d85 (diff) |
igc(4): Fix attach for I226-K and LMVP devices
Summary:
The device IDs for these were in the driver's list of PCI ids to attach
to, but igc_set_mac_type() had never been setup to set the correct mac
type for these devices. Fix this by adding these IDs to the switch block
in order for them to be recognized by the driver instead of returning an
error.
This fixes the igc(4) attach for the I226-K LOM on the ASRock Z790
PG-ITX/TB4 motherboard, allowing it to be recognized and used.
Signed-off-by: Eric Joyner <erj@FreeBSD.org>
Reviewed by: kbowling@
MFC after: 3 days
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D49147
-rw-r--r-- | sys/dev/igc/igc_api.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/igc/igc_api.c b/sys/dev/igc/igc_api.c index 9e91e7a4c73f..da499274fca4 100644 --- a/sys/dev/igc/igc_api.c +++ b/sys/dev/igc/igc_api.c @@ -109,6 +109,8 @@ s32 igc_set_mac_type(struct igc_hw *hw) case IGC_DEV_ID_I220_V: case IGC_DEV_ID_I225_K2: case IGC_DEV_ID_I225_LMVP: + case IGC_DEV_ID_I226_K: + case IGC_DEV_ID_I226_LMVP: case IGC_DEV_ID_I225_IT: case IGC_DEV_ID_I226_LM: case IGC_DEV_ID_I226_V: |