From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mout.kundenserver.de ([212.227.17.24]:55474 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752988AbdCTJu2 (ORCPT ); Mon, 20 Mar 2017 05:50:28 -0400 From: Arnd Bergmann To: Rick Chang , Bin Liu , Mauro Carvalho Chehab Cc: Arnd Bergmann , Matthias Brugger , Minghsiu Tsai , Ricky Liang , linux-media@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include Date: Mon, 20 Mar 2017 10:47:54 +0100 Message-Id: <20170320094812.1365229-1-arnd@arndb.de> Sender: linux-media-owner@vger.kernel.org List-ID: With the newly added driver, I have run into randconfig failures like: drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c: In function 'mtk_jpeg_open': drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c:1017:8: error: implicit declaration of function 'kzalloc';did you mean 'kvzalloc'? [-Werror=implicit-function-declaration] Including the header with the declaration solves the problem. Signed-off-by: Arnd Bergmann --- drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c index b10183f7942b..f9bd58ce7d32 100644 --- a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c +++ b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include -- 2.9.0