From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mailgw02.mediatek.com ([210.61.82.184]:27039 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1755329AbdCUBW2 (ORCPT ); Mon, 20 Mar 2017 21:22:28 -0400 Message-ID: <1490059335.27725.7.camel@mtksdaap41> Subject: Re: [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include From: Rick Chang To: Arnd Bergmann CC: Bin Liu , Mauro Carvalho Chehab , Matthias Brugger , "Minghsiu Tsai" , Ricky Liang , , , , , "Hans Verkuil" Date: Tue, 21 Mar 2017 09:22:15 +0800 In-Reply-To: <20170320094812.1365229-1-arnd@arndb.de> References: <20170320094812.1365229-1-arnd@arndb.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org List-ID: Hi Arnd, Thank you for the patch, but someone has fixed the same problem. Regards, Rick On Mon, 2017-03-20 at 10:47 +0100, Arnd Bergmann wrote: > 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