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

Commit c18b4c52 authored by Mirza Krak's avatar Mirza Krak Committed by Alexandre Belloni
Browse files

rtc: pcf85063: do not register a RTC device if chip is not present



Add a sanity check to see if chip is present. If we can not communicate
with the chip there is no point in registering a RTC device.

Signed-off-by: default avatarMirza Krak <mirza.krak@hostmobility.com>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent aaa6f6ac
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -191,12 +191,19 @@ static int pcf85063_probe(struct i2c_client *client,
				const struct i2c_device_id *id)
				const struct i2c_device_id *id)
{
{
	struct rtc_device *rtc;
	struct rtc_device *rtc;
	int err;


	dev_dbg(&client->dev, "%s\n", __func__);
	dev_dbg(&client->dev, "%s\n", __func__);


	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
		return -ENODEV;
		return -ENODEV;


	err = i2c_smbus_read_byte_data(client, PCF85063_REG_CTRL1);
	if (err < 0) {
		dev_err(&client->dev, "RTC chip is not present\n");
		return err;
	}

	rtc = devm_rtc_device_register(&client->dev,
	rtc = devm_rtc_device_register(&client->dev,
				       pcf85063_driver.driver.name,
				       pcf85063_driver.driver.name,
				       &pcf85063_rtc_ops, THIS_MODULE);
				       &pcf85063_rtc_ops, THIS_MODULE);