Re: [PATCH net] net: atlantic: fix reading SFP module info on some AQC100 cards

From: Andrew Lunn

Date: Sun Feb 15 2026 - 21:12:59 EST


> + /* Wait FW to report back */
> + err = readx_poll_timeout_atomic(aq_fw2x_state_get, self, low_status,
> + orig_low_status != (low_status &
> + BIT(CAPS_LO_SMBUS_READ)),
> + 10U, 100000U);
> + if (err)
> + return -EIO;

Please don't replace the error code readx_poll_timeout_atomic()
returns with something else.

Andrew