summaryrefslogtreecommitdiff
path: root/drivers/hwmon/l3g4200d.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/l3g4200d.c')
-rw-r--r--drivers/hwmon/l3g4200d.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/l3g4200d.c b/drivers/hwmon/l3g4200d.c
index ffe3e1a9730..ad7d9ee6e05 100644
--- a/drivers/hwmon/l3g4200d.c
+++ b/drivers/hwmon/l3g4200d.c
@@ -458,8 +458,9 @@ static int __devinit l3g4200d_probe(struct i2c_client *client,
ddata = kzalloc(sizeof(struct l3g4200d_data), GFP_KERNEL);
if (ddata == NULL) {
+ dev_err(&client->dev, "memory alocation failed\n");
ret = -ENOMEM;
- goto error_op_failed;
+ goto exit;
}
ddata->client = client;
@@ -479,6 +480,7 @@ static int __devinit l3g4200d_probe(struct i2c_client *client,
dev_err(&client->dev, "failed to get regulator\n");
ret = PTR_ERR(ddata->regulator);
ddata->regulator = NULL;
+ goto error_op_failed;
}
if (ddata->regulator) {