diff options
| -rw-r--r-- | drivers/regulator/fixed.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c index 3c307d62fd31..c61f7e97e4f8 100644 --- a/drivers/regulator/fixed.c +++ b/drivers/regulator/fixed.c | |||
| @@ -130,10 +130,8 @@ static int reg_fixed_voltage_probe(struct platform_device *pdev) | |||
| 130 | 130 | ||
| 131 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data), | 131 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data), |
| 132 | GFP_KERNEL); | 132 | GFP_KERNEL); |
| 133 | if (drvdata == NULL) { | 133 | if (!drvdata) |
| 134 | dev_err(&pdev->dev, "Failed to allocate device data\n"); | ||
| 135 | return -ENOMEM; | 134 | return -ENOMEM; |
| 136 | } | ||
| 137 | 135 | ||
| 138 | drvdata->desc.name = devm_kstrdup(&pdev->dev, | 136 | drvdata->desc.name = devm_kstrdup(&pdev->dev, |
| 139 | config->supply_name, | 137 | config->supply_name, |
