Commit eca9e827 authored by Dan Carpenter's avatar Dan Carpenter Committed by Christoph Hellwig
Browse files

nvme: remove an unnecessary condition



"v" is an unsigned int so it can't be more than UINT_MAX.  Removing this
check makes it easier to preserve the error code as well.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent c5be1f2c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3586,8 +3586,8 @@ static ssize_t nvme_ctrl_reconnect_delay_store(struct device *dev,
	int err;

	err = kstrtou32(buf, 10, &v);
	if (err || v > UINT_MAX)
		return -EINVAL;
	if (err)
		return err;

	ctrl->opts->reconnect_delay = v;
	return count;