• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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