hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
kernel/drivers/net/phy/dp83822.c
....@@ -247,7 +247,8 @@
247247 DP83822_ENERGY_DET_INT_EN |
248248 DP83822_LINK_QUAL_INT_EN);
249249
250
- if (!dp83822->fx_enabled)
250
+ /* Private data pointer is NULL on DP83825/26 */
251
+ if (!dp83822 || !dp83822->fx_enabled)
251252 misr_status |= DP83822_ANEG_COMPLETE_INT_EN |
252253 DP83822_DUP_MODE_CHANGE_INT_EN |
253254 DP83822_SPEED_CHANGED_INT_EN;
....@@ -267,7 +268,8 @@
267268 DP83822_PAGE_RX_INT_EN |
268269 DP83822_EEE_ERROR_CHANGE_INT_EN);
269270
270
- if (!dp83822->fx_enabled)
271
+ /* Private data pointer is NULL on DP83825/26 */
272
+ if (!dp83822 || !dp83822->fx_enabled)
271273 misr_status |= DP83822_ANEG_ERR_INT_EN |
272274 DP83822_WOL_PKT_INT_EN;
273275