Commit 19c6d8bd authored by Kryštof Černý's avatar Kryštof Černý Committed by Krzysztof Kozlowski
Browse files

w1: ds2482: switch to devm_kzalloc() from kzalloc()



Refactored the driver to devm_kzalloc() from kzalloc(), so the future
driver edits are easier and less error-prone.

Signed-off-by: default avatarKryštof Černý <cleverline1mc@gmail.com>
Link: https://lore.kernel.org/r/20241129-ds2482-add-reg-v6-2-bd95ad171e19@gmail.com


Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
parent be197d90
Loading
Loading
Loading
Loading
+5 −13
Original line number Diff line number Diff line
@@ -451,11 +451,9 @@ static int ds2482_probe(struct i2c_client *client)
				     I2C_FUNC_SMBUS_BYTE))
		return -ENODEV;

	data = kzalloc(sizeof(struct ds2482_data), GFP_KERNEL);
	if (!data) {
		err = -ENOMEM;
		goto exit;
	}
	data = devm_kzalloc(&client->dev, sizeof(struct ds2482_data), GFP_KERNEL);
	if (!data)
		return -ENOMEM;

	data->client = client;
	i2c_set_clientdata(client, data);
@@ -463,7 +461,7 @@ static int ds2482_probe(struct i2c_client *client)
	/* Reset the device (sets the read_ptr to status) */
	if (ds2482_send_cmd(data, DS2482_CMD_RESET) < 0) {
		dev_warn(&client->dev, "DS2482 reset failed.\n");
		goto exit_free;
		return err;
	}

	/* Sleep at least 525ns to allow the reset to complete */
@@ -474,7 +472,7 @@ static int ds2482_probe(struct i2c_client *client)
	if (temp1 != (DS2482_REG_STS_LL | DS2482_REG_STS_RST)) {
		dev_warn(&client->dev, "DS2482 reset status "
			 "0x%02X - not a DS2482\n", temp1);
		goto exit_free;
		return err;
	}

	/* Detect the 8-port version */
@@ -516,9 +514,6 @@ static int ds2482_probe(struct i2c_client *client)
		if (data->w1_ch[idx].pdev != NULL)
			w1_remove_master_device(&data->w1_ch[idx].w1_bm);
	}
exit_free:
	kfree(data);
exit:
	return err;
}

@@ -532,9 +527,6 @@ static void ds2482_remove(struct i2c_client *client)
		if (data->w1_ch[idx].pdev != NULL)
			w1_remove_master_device(&data->w1_ch[idx].w1_bm);
	}

	/* Free the memory */
	kfree(data);
}

/*