]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/vmwgfx: Fix host message module function declarations
authorThomas Hellstrom <thellstrom@vmware.com>
Thu, 21 Jun 2018 07:39:21 +0000 (09:39 +0200)
committerThomas Hellstrom <thellstrom@vmware.com>
Tue, 3 Jul 2018 18:41:10 +0000 (20:41 +0200)
Make the host message module function declarations similar to the other
declarations in vmwgfx_drv.h and include the header in vmwgfx_msg.c

Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Deepak Rawat <drawat@vmware.com>
drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
drivers/gpu/drm/vmwgfx/vmwgfx_msg.c

index a38318c3efe452303141012cc6e15bc7d6610cf7..a3a0826958a14708ee66e428fd540d7ee563ce0c 100644 (file)
@@ -1230,6 +1230,11 @@ int vmw_bo_cpu_blit(struct ttm_buffer_object *dst,
                    u32 w, u32 h,
                    struct vmw_diff_cpy *diff);
 
+/* Host messaging -vmwgfx_msg.c: */
+int vmw_host_get_guestinfo(const char *guest_info_param,
+                          char *buffer, size_t *length);
+int vmw_host_log(const char *log);
+
 /**
  * Inline helper functions
  */
@@ -1309,10 +1314,4 @@ static inline void vmw_mmio_write(u32 value, u32 *addr)
 {
        WRITE_ONCE(*addr, value);
 }
-
-/**
- * Add vmw_msg module function
- */
-extern int vmw_host_log(const char *log);
-
 #endif
index a72268e97042561d63801a294af6a5bc4f5bdc88..3549e6bd4178d4e7077e9ca0730ea555dad694dd 100644 (file)
@@ -31,6 +31,7 @@
 #include <linux/frame.h>
 #include <asm/hypervisor.h>
 #include <drm/drmP.h>
+#include "vmwgfx_drv.h"
 #include "vmwgfx_msg.h"