[ This code is five years old now. It's so weird to me that the warning is showing up in my new warnings pile. Perhaps this wasn't included in my allmodconfig before? - dan ] Hello Sylwester Nawrocki, The patch 34947b8aebe3: "[media] exynos4-is: Add the FIMC-IS ISP capture DMA driver" from Dec 20, 2013, leads to the following static checker warning: drivers/media/platform/exynos4-is/fimc-isp-video.c:408 isp_video_try_fmt_mplane() error: NULL dereference inside function '__isp_video_try_fmt(isp, &f->fmt.pix_mp, (0))()'. drivers/media/platform/exynos4-is/fimc-isp-video.c 383 static void __isp_video_try_fmt(struct fimc_isp *isp, 384 struct v4l2_pix_format_mplane *pixm, 385 const struct fimc_fmt **fmt) 386 { 387 *fmt = fimc_isp_find_format(&pixm->pixelformat, NULL, 2); ^^^^ Unchecked dereference. We're not allowed to pass a NULL "fmt". 388 389 pixm->colorspace = V4L2_COLORSPACE_SRGB; 390 pixm->field = V4L2_FIELD_NONE; 391 pixm->num_planes = (*fmt)->memplanes; 392 pixm->pixelformat = (*fmt)->fourcc; 393 /* 394 * TODO: double check with the docmentation these width/height 395 * constraints are correct. 396 */ 397 v4l_bound_align_image(&pixm->width, FIMC_ISP_SOURCE_WIDTH_MIN, 398 FIMC_ISP_SOURCE_WIDTH_MAX, 3, 399 &pixm->height, FIMC_ISP_SOURCE_HEIGHT_MIN, 400 FIMC_ISP_SOURCE_HEIGHT_MAX, 0, 0); 401 } 402 403 static int isp_video_try_fmt_mplane(struct file *file, void *fh, 404 struct v4l2_format *f) 405 { 406 struct fimc_isp *isp = video_drvdata(file); 407 408 __isp_video_try_fmt(isp, &f->fmt.pix_mp, NULL); ^^^^ And yet here we are. 409 return 0; 410 } regards, dan carpenter -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html