On Tue, 14 Sep 2021 13:53:33 +0300 Dan Carpenter <dan.carpenter@xxxxxxxxxx> wrote: > The ssp_print_mcu_debug() function should return negative error codes on > error. Returning "length" is meaningless. This change does not affect > runtime because the callers only care about zero/non-zero. > > Reported-by: Jonathan Cameron <jic23@xxxxxxxxxx> > Fixes: 50dd64d57eee ("iio: common: ssp_sensors: Add sensorhub driver") > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Applied to the fixes-togreg branch of iio.git and marked for stable. Thanks, Jonathan > --- > drivers/iio/common/ssp_sensors/ssp_spi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/common/ssp_sensors/ssp_spi.c b/drivers/iio/common/ssp_sensors/ssp_spi.c > index 4864c38b8d1c..77449b4f3df5 100644 > --- a/drivers/iio/common/ssp_sensors/ssp_spi.c > +++ b/drivers/iio/common/ssp_sensors/ssp_spi.c > @@ -137,7 +137,7 @@ static int ssp_print_mcu_debug(char *data_frame, int *data_index, > if (length > received_len - *data_index || length <= 0) { > ssp_dbg("[SSP]: MSG From MCU-invalid debug length(%d/%d)\n", > length, received_len); > - return length ? length : -EPROTO; > + return -EPROTO; > } > > ssp_dbg("[SSP]: MSG From MCU - %s\n", &data_frame[*data_index]);