]> git.baikalelectronics.ru Git - kernel.git/commit
i2c: add sanity check to i2c_put_adapter
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Thu, 1 Aug 2013 12:10:46 +0000 (14:10 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 7 Aug 2013 15:06:26 +0000 (17:06 +0200)
commitf4badf9e1b373738c58b7c7b5ea68d983d886cfe
tree3dd599cd11bc0b3d7bafad2212d55113080c904e
parentf4e279024ff3add42bad24ac0ce43929a1df3ce1
i2c: add sanity check to i2c_put_adapter

i2c_put_adapter dereferences i2c_adapter pointer passed without check
for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter
called with NULL and behave the same way i2c_release_client does already.
It allows to simplify drivers where you need to release the adapter
during probe failures.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core.c