public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include
@ 2017-03-20  9:47 Arnd Bergmann
  2017-03-20  9:47 ` [PATCH 2/2] [media] vcodec: mediatek: mark pm functions as __maybe_unused Arnd Bergmann
  2017-03-21  1:22 ` [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include Rick Chang
  0 siblings, 2 replies; 4+ messages in thread
From: Arnd Bergmann @ 2017-03-20  9:47 UTC (permalink / raw)
  To: linux-arm-kernel

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 <arnd@arndb.de>
---
 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 <linux/of_platform.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
+#include <linux/slab.h>
 #include <linux/spinlock.h>
 #include <media/v4l2-event.h>
 #include <media/v4l2-mem2mem.h>
-- 
2.9.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-03-21  1:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-20  9:47 [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include Arnd Bergmann
2017-03-20  9:47 ` [PATCH 2/2] [media] vcodec: mediatek: mark pm functions as __maybe_unused Arnd Bergmann
2017-03-21  1:46   ` Rick Chang
2017-03-21  1:22 ` [PATCH 1/2] [media] vcodec: mediatek: add missing linux/slab.h include Rick Chang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox