]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mfd: 88pm800: Fix I2C device resource leak if probe fails
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Wed, 12 Feb 2014 10:10:56 +0000 (11:10 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 May 2014 14:59:25 +0000 (07:59 -0700)
commitb89fa5eb9efe824d6e08a01867773991d6419d25
tree7fd43b40571ef09c72961770612821ccfb41ceae
parentfb8be80b493d7c68ebbd528872fa799484b9adbc
mfd: 88pm800: Fix I2C device resource leak if probe fails

commit 141050cf3d84fc303df58796d68dc1376b0e8f67 upstream.

During probe the driver allocates two dummy I2C devices for subchips in
function pm800_pages_init(). Additionally this function allocates
regmaps for these subchips. If any of these steps fail then these dummy
I2C devices are not freed and resources leak.

On pm800_pages_init() fail the driver must call pm800_pages_exit() to
unregister dummy I2C devices.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/mfd/88pm800.c