Re: [PATCH v2 2/2] drivers/net: remove use of non-standard array range initialization

2025-03-07 Thread Howard Wang
Acked-by: Howard Wang

Re: [PATCH v2 2/2] drivers/net: remove use of non-standard array range initialization

2025-03-05 Thread Patrick Robb
Recheck-request: iol-intel-Performance There was an infra failure with the Arm Grace server about 12 hours ago which caused this failure - sending a retest request.

[PATCH v2 2/2] drivers/net: remove use of non-standard array range initialization

2025-03-05 Thread Andre Muezerie
Array range initialization is non-standard and is not provided by all compilers. MSVC does not implement it and ends up emitting errors like the one below: drivers/net/r8169/r8169_phy.c(380): error C2143: syntax error: missing ':' before '...' case CFG_METHOD_48 ... CFG_METHOD_57: The fix is