Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7fec0bb authored by Inaky Perez-Gonzalez's avatar Inaky Perez-Gonzalez
Browse files

wimax/i2400m: fix inverted value in i2400ms_bus_setup()



Fix inverted setting of 'retries'; when we are in the probe() path, we
should retry to enable the function only once; otherwise until it
times out.

Signed-off-by: default avatarInaky Perez-Gonzalez <inaky@linux.intel.com>
parent 20d57f8e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -183,9 +183,9 @@ int i2400ms_bus_setup(struct i2400m *i2400m)
	}

	if (i2400ms->iwmc3200 && i2400ms->debugfs_dentry == NULL)
		retries = 0;
	else
		retries = 1;
	else
		retries = 0;
	result = i2400ms_enable_function(i2400ms, retries);
	if (result < 0) {
		dev_err(dev, "Cannot enable SDIO function: %d\n", result);