summaryrefslogtreecommitdiff
path: root/sound/soc/intel/boards/kbl_da7219_max98357a.c
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2018-04-20 13:44:30 +0300
committerMark Brown <broonie@kernel.org>2018-04-20 19:29:37 +0300
commit3069db24402f334a33c9d19b4edbbc3cca869876 (patch)
tree84199bd2e1e314010b812201599814504a04b7b0 /sound/soc/intel/boards/kbl_da7219_max98357a.c
parentb113855a5a28c1574ad744dd9a34748442d6e006 (diff)
downloadlinux-3069db24402f334a33c9d19b4edbbc3cca869876.tar.xz
ASoC: Intel: kbl_da7219_max98357a: Replace GFP_ATOMIC with GFP_KERNEL
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>
Diffstat (limited to 'sound/soc/intel/boards/kbl_da7219_max98357a.c')
-rw-r--r--sound/soc/intel/boards/kbl_da7219_max98357a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/boards/kbl_da7219_max98357a.c b/sound/soc/intel/boards/kbl_da7219_max98357a.c
index e84baafd5f63..60e739f3d6f3 100644
--- 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;