1 /****************************************************************************** 2 * 3 * Copyright(c) 2019 - 2020 Realtek Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 *****************************************************************************/ 15 #ifndef __PHL_CMD_SER_H__ 16 #define __PHL_CMD_SER_H__ 17 18 #ifndef CONFIG_FSM 19 enum rtw_phl_status phl_fw_watchdog_timeout_notify(void *phl); 20 enum rtw_phl_status rtw_phl_ser_dump_ple_buffer(void *phl); 21 #endif 22 23 enum rtw_phl_status phl_ser_send_msg(void *phl, enum RTW_PHL_SER_NOTIFY_EVENT notify); 24 25 #ifdef CONFIG_PHL_CMD_SER 26 enum rtw_phl_status 27 phl_register_ser_module(struct phl_info_t *phl_info); 28 #endif 29 30 #endif /* __PHL_CMD_SER_H__ */ 31