From: Laura Abbott Date: Wed, 10 May 2017 17:05:25 +0000 (-0700) Subject: drm/prime: Forward declare struct device X-Git-Tag: v4.14-rc1~8^2~52^2~295 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bebc1d55d2923ee365de394bcac8ed80ca558f42;p=platform%2Fkernel%2Flinux-rpi.git drm/prime: Forward declare struct device We need a declaration of struct device to avoid warnings: In file included from include/drm/drm_file.h:38:0, from drivers/gpu/drm/drm_file.c:38: include/drm/drm_prime.h:71:14: warning: 'struct device' declared inside parameter list will not be visible outside of this definition or declaration struct device *attach_dev); ^~~~~~ Forward declare it. Signed-off-by: Laura Abbott Reviewed-by: Sumit Semwal Signed-off-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/1494435925-9457-1-git-send-email-labbott@redhat.com --- diff --git a/include/drm/drm_prime.h b/include/drm/drm_prime.h index 46fd1fb..59ccab4 100644 --- a/include/drm/drm_prime.h +++ b/include/drm/drm_prime.h @@ -50,6 +50,8 @@ struct drm_prime_file_private { struct rb_root handles; }; +struct device; + struct dma_buf_export_info; struct dma_buf;