projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c038047
)
ASoC: Intel: byt-max98090: Replace GFP_ATOMIC with GFP_KERNEL
author
Vinod Koul
<vinod.koul@intel.com>
Fri, 20 Apr 2018 10:44:26 +0000
(16:14 +0530)
committer
Mark Brown
<broonie@kernel.org>
Fri, 20 Apr 2018 16:28:53 +0000
(17:28 +0100)
In byt_max98090_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/byt-max98090.c
patch
|
blob
|
history
diff --git
a/sound/soc/intel/boards/byt-max98090.c
b/sound/soc/intel/boards/byt-max98090.c
index 0f8b8209c0203d80ccc88aa0e65a5cc4cfe1807a..f1283634b22b068c1613dd547497fd1929f15e1f 100644
(file)
--- a/
sound/soc/intel/boards/byt-max98090.c
+++ b/
sound/soc/intel/boards/byt-max98090.c
@@
-151,7
+151,7
@@
static int byt_max98090_probe(struct platform_device *pdev)
struct byt_max98090_private *priv;
int ret_val;
- priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_
ATOMIC
);
+ priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_
KERNEL
);
if (!priv) {
dev_err(&pdev->dev, "allocation failed\n");
return -ENOMEM;