We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06034b2 commit 6491145Copy full SHA for 6491145
drivers/network/dd/e1000/info.c
@@ -37,6 +37,7 @@ static NDIS_OID SupportedOidList[] =
37
OID_802_3_PERMANENT_ADDRESS,
38
OID_802_3_CURRENT_ADDRESS,
39
OID_802_3_MAXIMUM_LIST_SIZE,
40
+ OID_GEN_PHYSICAL_MEDIUM,
41
42
/* Statistics */
43
OID_GEN_XMIT_OK,
@@ -239,6 +240,12 @@ MiniportQueryInformation(
239
240
break;
241
}
242
243
+ case OID_GEN_PHYSICAL_MEDIUM:
244
+ {
245
+ GenericInfo.Ulong = NdisPhysicalMedium802_3;
246
+ break;
247
+ }
248
+
249
default:
250
NDIS_DbgPrint(MIN_TRACE, ("Unknown OID 0x%x(%s)\n", Oid, Oid2Str(Oid)));
251
status = NDIS_STATUS_NOT_SUPPORTED;
0 commit comments