diff options
Diffstat (limited to 'drivers/mfd/wm831x-spi.c')
-rw-r--r-- | drivers/mfd/wm831x-spi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/wm831x-spi.c b/drivers/mfd/wm831x-spi.c index 8d6a9a969dbc..a43cba373001 100644 --- a/drivers/mfd/wm831x-spi.c +++ b/drivers/mfd/wm831x-spi.c | |||
@@ -30,7 +30,7 @@ static int __devinit wm831x_spi_probe(struct spi_device *spi) | |||
30 | 30 | ||
31 | type = (enum wm831x_parent)id->driver_data; | 31 | type = (enum wm831x_parent)id->driver_data; |
32 | 32 | ||
33 | wm831x = kzalloc(sizeof(struct wm831x), GFP_KERNEL); | 33 | wm831x = devm_kzalloc(&spi->dev, sizeof(struct wm831x), GFP_KERNEL); |
34 | if (wm831x == NULL) | 34 | if (wm831x == NULL) |
35 | return -ENOMEM; | 35 | return -ENOMEM; |
36 | 36 | ||
@@ -45,7 +45,6 @@ static int __devinit wm831x_spi_probe(struct spi_device *spi) | |||
45 | ret = PTR_ERR(wm831x->regmap); | 45 | ret = PTR_ERR(wm831x->regmap); |
46 | dev_err(wm831x->dev, "Failed to allocate register map: %d\n", | 46 | dev_err(wm831x->dev, "Failed to allocate register map: %d\n", |
47 | ret); | 47 | ret); |
48 | kfree(wm831x); | ||
49 | return ret; | 48 | return ret; |
50 | } | 49 | } |
51 | 50 | ||