1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /****************************************************************************** 3 * 4 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. 5 * 6 ******************************************************************************/ 7 #ifndef __SDIO_HAL_H__ 8 #define __SDIO_HAL_H__ 9 10 11 extern u8 sd_hal_bus_init(struct adapter *padapter); 12 extern u8 sd_hal_bus_deinit(struct adapter *padapter); 13 14 u8 sd_int_isr(struct adapter *padapter); 15 void sd_int_dpc(struct adapter *padapter); 16 void rtw_set_hal_ops(struct adapter *padapter); 17 18 void rtl8723bs_set_hal_ops(struct adapter *padapter); 19 20 #endif /* __SDIO_HAL_H__ */ 21