diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-03-31 09:32:37 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-06-03 03:11:06 -0400 |
commit | 2b29ff7e0a609ff57938774ff62baede7b80a405 (patch) | |
tree | 22696e072e99f53f694a1cc4acfcf1ef48cfacc7 /drivers/mfd/bcm590xx.c | |
parent | 28fee3fa0e33eca809ea0bb75c45f4910360322c (diff) |
mfd: bcm590xx: Add missing remove function
Add missing mfd_remove_devices() call in remove function.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/bcm590xx.c')
-rw-r--r-- | drivers/mfd/bcm590xx.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mfd/bcm590xx.c b/drivers/mfd/bcm590xx.c index e9a33c79431b..5adb2e3dca8d 100644 --- a/drivers/mfd/bcm590xx.c +++ b/drivers/mfd/bcm590xx.c | |||
@@ -64,6 +64,12 @@ static int bcm590xx_i2c_probe(struct i2c_client *i2c, | |||
64 | return ret; | 64 | return ret; |
65 | } | 65 | } |
66 | 66 | ||
67 | static int bcm590xx_i2c_remove(struct i2c_client *i2c) | ||
68 | { | ||
69 | mfd_remove_devices(&i2c->dev); | ||
70 | return 0; | ||
71 | } | ||
72 | |||
67 | static const struct of_device_id bcm590xx_of_match[] = { | 73 | static const struct of_device_id bcm590xx_of_match[] = { |
68 | { .compatible = "brcm,bcm59056" }, | 74 | { .compatible = "brcm,bcm59056" }, |
69 | { } | 75 | { } |
@@ -83,6 +89,7 @@ static struct i2c_driver bcm590xx_i2c_driver = { | |||
83 | .of_match_table = of_match_ptr(bcm590xx_of_match), | 89 | .of_match_table = of_match_ptr(bcm590xx_of_match), |
84 | }, | 90 | }, |
85 | .probe = bcm590xx_i2c_probe, | 91 | .probe = bcm590xx_i2c_probe, |
92 | .remove = bcm590xx_i2c_remove, | ||
86 | .id_table = bcm590xx_i2c_id, | 93 | .id_table = bcm590xx_i2c_id, |
87 | }; | 94 | }; |
88 | module_i2c_driver(bcm590xx_i2c_driver); | 95 | module_i2c_driver(bcm590xx_i2c_driver); |