1 /****************************************************************************** 2 * 3 * Copyright(c) 2019 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_NOTIFY_H_ 16 #define _PHL_NOTIFY_H_ 17 18 #ifdef CONFIG_CMD_DISP 19 enum rtw_phl_status 20 rtw_phl_cmd_notify(struct rtw_phl_com_t *phl_com, 21 enum phl_msg_evt_id event, 22 void *hal_cmd, 23 u8 hw_idx); 24 25 enum rtw_phl_status 26 phl_notify_cmd_hdl(struct phl_info_t *phl_info, u8 *param); 27 #endif /* CONFIG_CMD_DISP */ 28 29 #endif /*_PHL_NOTIFY_H_*/ 30 31