]> git.karo-electronics.de Git - linux-beck.git/commit
mfd: sec-core: Fix possible NULL pointer dereference when i2c_new_dummy error
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Tue, 11 Feb 2014 09:12:25 +0000 (10:12 +0100)
committerLee Jones <lee.jones@linaro.org>
Tue, 18 Mar 2014 10:50:18 +0000 (10:50 +0000)
commit65aba1e04916d72b30c028730a1e31860c225412
tree48fe323dd2451d9b92aab74e524b35178605348e
parentdc6919663f7a02d02cc08d605a1f68d6cefe0042
mfd: sec-core: Fix possible NULL pointer dereference when i2c_new_dummy error

During probe the sec-core driver allocates dummy I2C device for RTC with
i2c_new_dummy() but return value is not checked. In case of error
(i2c_new_device(): memory allocation failure or I2C address cannot be
used) this function returns NULL which is later used by
devm_regmap_init_i2c() or i2c_unregister_device().

If i2c_new_dummy() fails for RTC device, fail also the probe for main
MFD driver.

Cc: stable@vger.kernel.org
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/sec-core.c