mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
Update driver version to v1.19.16_nv-126-g455ab52c9.20241107_Certified_Module to enable roaming and fix issues with roaming Bug 5023692 Bug 4957055 Change-Id: I7d021f599c6483e15828a564a016e4037b238c90 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3246715 Tested-by: Shobek Attupurath <sattupurath@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Ashutosh Jha <ajha@nvidia.com> Reviewed-by: Shobek Attupurath <sattupurath@nvidia.com> Reviewed-by: Revanth Kumar Uppala <ruppala@nvidia.com>
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2013 - 2017 Realtek Corporation.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
*****************************************************************************/
|
|
#ifdef CONFIG_BTC
|
|
|
|
#ifndef __RTW_BTC_H__
|
|
#define __RTW_BTC_H__
|
|
|
|
enum rtw_core_btc_cmd_id {
|
|
RTW_CORE_BTC_CMD_TRXSS_LMT,
|
|
RTW_CORE_BTC_CMD_TRXSS_NO_LMT,
|
|
RTW_CORE_BTC_CMD_MAX
|
|
};
|
|
|
|
u8 rtw_core_btc_hdl(_adapter *padapter, enum rtw_core_btc_cmd_id btc_cmd_id);
|
|
u8 rtw_core_btc_cmd(_adapter *padapter, enum rtw_core_btc_cmd_id btc_cmd_id, u8 flags);
|
|
|
|
#ifdef CONFIG_BTC_TRXSS_CHG
|
|
u8 rtw_btc_trxss_chg_hdl(struct dvobj_priv *dvobj, struct phl_msg *msg, u16 evt_id);
|
|
#endif
|
|
|
|
#endif /* __RTW_BTC_H__ */
|
|
#endif /* CONFIG_BTC */
|
|
|