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_API_TMP_H_
16 #define __PHL_API_TMP_H_
17
18
19 #ifdef CONFIG_SDIO_HCI
rtw_hal_sd_f0_reg_dump(void * sel,void * h)20 static inline void rtw_hal_sd_f0_reg_dump(void *sel, void *h){ };
rtw_hal_sdio_local_reg_dump(void * sel,void * h)21 static inline void rtw_hal_sdio_local_reg_dump(void *sel, void *h){ };
22 #endif
23
rtw_hal_get_txdesc_len(void * h,struct pkt_attrib * attrib)24 static inline u32 rtw_hal_get_txdesc_len(void *h,
25 struct pkt_attrib *attrib){return 0;};
26
27
28
29 #ifdef CONFIG_PCI_HCI
rtw_hal_pci_check_enough_txdesc(void * h,u8 queue_id)30 static inline u8 rtw_hal_pci_check_enough_txdesc(void *h, u8 queue_id)
31 {
32 return 0;
33 }
34 #endif
35
36 #endif /*__PHL_API_TMP_H_*/
37