]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
rtc: bq32k: remove redundant check
authorManinder Singh <maninder1.s@samsung.com>
Wed, 8 Jul 2015 06:56:47 +0000 (12:26 +0530)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Sat, 5 Sep 2015 11:19:05 +0000 (13:19 +0200)
commit617f6f7ef5bfe8c0ac580243c3da9a836c6e39bf
treeb259d9ffbc34c34a295ca3f0713907b2da08ee8f
parent508db592e2f54d731bf2f5eabd9642a1a566f276
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: Maninder Singh <maninder1.s@samsung.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-bq32k.c