projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b113855
)
ASoC: Intel: kbl_da7219_max98357a: Replace GFP_ATOMIC with GFP_KERNEL
author
Vinod Koul
<vinod.koul@intel.com>
Fri, 20 Apr 2018 10:44:30 +0000
(16:14 +0530)
committer
Mark Brown
<broonie@kernel.org>
Fri, 20 Apr 2018 16:29:37 +0000
(17:29 +0100)
In kabylake_audio_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/kbl_da7219_max98357a.c
patch
|
blob
|
history
diff --git
a/sound/soc/intel/boards/kbl_da7219_max98357a.c
b/sound/soc/intel/boards/kbl_da7219_max98357a.c
index e84baafd5f63bee01f15dad6631d8f26db293007..60e739f3d6f3d7c761e1ec6ad5af9605ec3c5dd7 100644
(file)
--- a/
sound/soc/intel/boards/kbl_da7219_max98357a.c
+++ b/
sound/soc/intel/boards/kbl_da7219_max98357a.c
@@
-572,7
+572,7
@@
static int kabylake_audio_probe(struct platform_device *pdev)
{
struct kbl_codec_private *ctx;
- ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_
ATOMIC
);
+ ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_
KERNEL
);
if (!ctx)
return -ENOMEM;