summaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/boards/bytcht_es8316.c
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2018-04-20 16:14:27 +0530
committerMark Brown <broonie@kernel.org>2018-04-20 17:29:00 +0100
commitd441b8588c3661afdcf61855aad38addb6833581 (patch)
treeeb6dd3acc6a306b4b317d8b1bd61158687f2bf1d /sound/soc/intel/boards/bytcht_es8316.c
parentffa481cf5d0e338e9221000805127c8cb3e2b150 (diff)
downloadlinux-0-day-d441b8588c3661afdcf61855aad38addb6833581.tar.gz
linux-0-day-d441b8588c3661afdcf61855aad38addb6833581.tar.xz
ASoC: Intel: bytcht_es8316: Replace GFP_ATOMIC with GFP_KERNEL
In snd_byt_cht_es8316_mc_probe which is not atomic context, we use GFP_ATOMIC flag with memory allocation, fix that by using GFP_KERNEL. Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/boards/bytcht_es8316.c')
-rw-r--r--sound/soc/intel/boards/bytcht_es8316.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/boards/bytcht_es8316.c b/sound/soc/intel/boards/bytcht_es8316.c
index 305e7f4fe55ab..adc26dfc7d654 100644
--- a/sound/soc/intel/boards/bytcht_es8316.c
+++ b/sound/soc/intel/boards/bytcht_es8316.c
@@ -243,7 +243,7 @@ static int snd_byt_cht_es8316_mc_probe(struct platform_device *pdev)
int i;
int ret = 0;
- priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_ATOMIC);
+ priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;