projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d441b85
)
ASoC: Intel: bytcr_rt5651: Replace GFP_ATOMIC with GFP_KERNEL
author
Vinod Koul
<vinod.koul@intel.com>
Fri, 20 Apr 2018 10:44:28 +0000
(16:14 +0530)
committer
Mark Brown
<broonie@kernel.org>
Fri, 20 Apr 2018 16:29:08 +0000
(17:29 +0100)
In snd_byt_rt5651_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>
sound/soc/intel/boards/bytcr_rt5651.c
patch
|
blob
|
history
diff --git
a/sound/soc/intel/boards/bytcr_rt5651.c
b/sound/soc/intel/boards/bytcr_rt5651.c
index
1b1997f
..
3c7d935
100644
(file)
--- a/
sound/soc/intel/boards/bytcr_rt5651.c
+++ b/
sound/soc/intel/boards/bytcr_rt5651.c
@@
-734,7
+734,7
@@
static int snd_byt_rt5651_mc_probe(struct platform_device *pdev)
int dai_index = 0;
int i;
- priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_
ATOMIC
);
+ priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_
KERNEL
);
if (!priv)
return -ENOMEM;