xref: /aosp_15_r20/external/mesa3d/src/gallium/winsys/svga/drm/vmw_msg.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright (c) 2016-2024 Broadcom. All Rights Reserved.
3  * The term “Broadcom” refers to Broadcom Inc.
4  * and/or its subsidiaries.
5  * SPDX-License-Identifier: MIT
6  */
7 
8 #ifndef _VMW_MSG_H
9 #define _VMW_MSG_H
10 
11 /**
12  * vmw_host_log: Sends a log message to the host
13  *
14  * @log: NULL terminated string
15  *
16  */
17 void vmw_svga_winsys_host_log(struct svga_winsys_screen *sws, const char *log);
18 
19 #endif
20 
21