From: Vinod Koul Date: Fri, 20 Apr 2018 10:44:26 +0000 (+0530) Subject: ASoC: Intel: byt-max98090: Replace GFP_ATOMIC with GFP_KERNEL X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ffa481cf5d0e338e9221000805127c8cb3e2b150;p=linux.git ASoC: Intel: byt-max98090: Replace GFP_ATOMIC with GFP_KERNEL 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/boards/byt-max98090.c b/sound/soc/intel/boards/byt-max98090.c index 0f8b8209c0203..f1283634b22b0 100644 --- 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;