summaryrefslogtreecommitdiff
path: root/sound/soc/zte
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2015-06-04 17:11:18 +0100
committerMark Brown <broonie@kernel.org>2015-06-04 17:11:18 +0100
commit69ccc50231eca9a57dc06a5514103c0f17ef402e (patch)
treed2799e7ffbee6443536d1c0614c3a7e5e0cfcc98 /sound/soc/zte
parentc8d8ff0a9da689d9649ce7b052190abb1e49a930 (diff)
ASoC: zte: Fix missing dev in devm operation
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/zte')
-rw-r--r--sound/soc/zte/zx296702-spdif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/zte/zx296702-spdif.c b/sound/soc/zte/zx296702-spdif.c
index 4a93bca232ff..11a0e46a1156 100644
--- a/sound/soc/zte/zx296702-spdif.c
+++ b/sound/soc/zte/zx296702-spdif.c
@@ -309,7 +309,7 @@ static int zx_spdif_probe(struct platform_device *pdev)
struct zx_spdif_info *zx_spdif;
int ret;
- zx_spdif = devm_kzalloc(sizeof(*zx_spdif), GFP_KERNEL);
+ zx_spdif = devm_kzalloc(&pdev->dev, sizeof(*zx_spdif), GFP_KERNEL);
if (!zx_spdif)
return -ENOMEM;