1 /* 2 * Copyright (c) 2026 Ahmad Khalifa <vexeduxr@FreeBSD.org> 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7 #ifndef RTL8723BU_H 8 #define RTL8723BU_H 9 10 #include <dev/rtwn/rtl8723b/r23b.h> 11 12 /* r23bu_init.c */ 13 int r23bu_power_on(struct rtwn_softc *); 14 void r23bu_power_off(struct rtwn_softc *); 15 void r23bu_init_bb(struct rtwn_softc *); 16 void r23bu_init_ampdu(struct rtwn_softc *); 17 void r23bu_init_rx_agg(struct rtwn_softc *sc); 18 19 /* r23bu_rom.c */ 20 void r23bu_parse_rom(struct rtwn_softc *, uint8_t *); 21 22 #endif 23