diff options
| author | Felipe Contreras <[email protected]> | 2012-01-06 06:00:48 +0400 |
|---|---|---|
| committer | Anton Vorontsov <[email protected]> | 2012-01-06 06:01:58 +0400 |
| commit | c934502db7fda4fac1bb3b5c74f35e9bde8e7547 (patch) | |
| tree | 8acd156ec2a736cb309d79e0d82c4707c1964934 | |
| parent | ef7906f3204280ccaf8cd7ace974b7c0a1393812 (diff) | |
isp1704_charger: Fix missing check
A segfault happens if there's no board information.
Signed-off-by: Felipe Contreras <[email protected]>
Acked-by: Heikki Krogerus <[email protected]>
Signed-off-by: Anton Vorontsov <[email protected]>
| -rw-r--r-- | drivers/power/isp1704_charger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/isp1704_charger.c b/drivers/power/isp1704_charger.c index 6a4ef387a183..b806667b59ae 100644 --- a/drivers/power/isp1704_charger.c +++ b/drivers/power/isp1704_charger.c @@ -79,7 +79,7 @@ static void isp1704_charger_set_power(struct isp1704_charger *isp, bool on) { struct isp1704_charger_data *board = isp->dev->platform_data; - if (board->set_power) + if (board && board->set_power) board->set_power(on); } |