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

Commit 617f6f7e authored by Maninder Singh's avatar Maninder Singh Committed by Alexandre Belloni
Browse files

rtc: bq32k: remove redundant check



removing below static analysis error:
(error) Possible null pointer dereference: client

if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
							^^^^^^^
Error comes because client is dereferenced before NULL check.
So probably NULL this check is not required.

Signed-off-by: default avatarManinder Singh <maninder1.s@samsung.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent 508db592
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ static int bq32k_probe(struct i2c_client *client,
	if (error)
		return error;

	if (client && client->dev.of_node)
	if (client->dev.of_node)
		trickle_charger_of_init(dev, client->dev.of_node);

	rtc = devm_rtc_device_register(&client->dev, bq32k_driver.driver.name,