aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2023-02-08 19:25:58 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2023-02-08 19:30:35 +0000
commit647f2d2bc0cb9357ac083bf2aae4b669167dd66b (patch)
treeb1b6d81f4845a4018f6d8ac7d216999285fbb62c
parentae1dca798e0f826de46f4ec11914ba4c91928d7a (diff)
downloadsrc-647f2d2bc0cb9357ac083bf2aae4b669167dd66b.tar.gz
src-647f2d2bc0cb9357ac083bf2aae4b669167dd66b.zip
e1000: bump driver version
Incrementing these to avoid confusion in users; we are on par with these out of tree versions. Reviewed by: erj MFC after: 2 weeks Sponsored by: BBOX.io Pull Request: https://github.com/freebsd/freebsd-src/pull/540
-rw-r--r--sys/dev/e1000/if_em.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c
index 6442b5f3f41e..2ed0164598a6 100644
--- a/sys/dev/e1000/if_em.c
+++ b/sys/dev/e1000/if_em.c
@@ -37,7 +37,8 @@
/*********************************************************************
* Driver version:
*********************************************************************/
-char em_driver_version[] = "7.6.1-k";
+char em_driver_version[] = "7.7.8-fbsd";
+char igb_driver_version[] = "2.5.19-fbsd";
/*********************************************************************
* PCI Device ID Table
@@ -599,7 +600,7 @@ static struct if_shared_ctx igb_sctx_init = {
.isc_ntxqs = 1,
.isc_admin_intrcnt = 1,
.isc_vendor_info = igb_vendor_info_array,
- .isc_driver_version = em_driver_version,
+ .isc_driver_version = igb_driver_version,
.isc_driver = &igb_if_driver,
.isc_flags = IFLIB_NEED_SCRATCH | IFLIB_TSO_INIT_IP | IFLIB_NEED_ZERO_CSUM,