rtc: pcf85363: remove bogus i2c functionality check
regmap is abstracting the i2c functionalities the best it can, there is no need to check. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
c0ec8319cc
commit
176a5ee32c
|
@ -385,9 +385,6 @@ static int pcf85363_probe(struct i2c_client *client,
|
||||||
if (data)
|
if (data)
|
||||||
config = data;
|
config = data;
|
||||||
|
|
||||||
if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
pcf85363 = devm_kzalloc(&client->dev, sizeof(struct pcf85363),
|
pcf85363 = devm_kzalloc(&client->dev, sizeof(struct pcf85363),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!pcf85363)
|
if (!pcf85363)
|
||||||
|
|
Loading…
Reference in New Issue