Re: [PATCH 4/5] net: ch9200: add missing error handling in ch9200_bind()

From: Jakub Kicinski
Date: Tue Apr 15 2025 - 23:47:26 EST


On Sat, 12 Apr 2025 19:38:28 +0100 Qasim Ijaz wrote:
> retval = usbnet_get_endpoints(dev, intf);
> - if (retval)
> + if (retval < 0)
> return retval;

This change is unnecessary ? Commit message speaks of control_write(),
this is usbnet_get_endpoints().