int slsi_check_rf_test_mode(void)
{
struct file *fp = NULL;
- char *filepath = "/data/misc/conn/.psm.info";
+ char *filepath = "/data/vendor/conn/.psm.info";
char power_val = 0;
fp = filp_open(filepath, O_RDONLY, 0);
bool allow_switch_40_mhz; /* Used in AP cert to disable HT40 when not configured */
bool allow_switch_80_mhz; /* Used in AP cert to disable VHT when not configured */
#ifdef CONFIG_SCSC_WLAN_AP_INFO_FILE
- /* Parameters in '/data/misc/conn/.softap.info' */
+ /* Parameters in '/data/vendor/conn/.softap.info' */
bool dualband_concurrency;
u32 softap_max_client;
#endif
static void write_wifi_version_info_file(struct slsi_dev *sdev)
{
struct file *fp = NULL;
- char *filepath = "/data/misc/conn/.wifiver.info";
+ char *filepath = "/data/vendor/conn/.wifiver.info";
char buf[256];
char build_id_fw[128];
char build_id_drv[64];
#ifdef CONFIG_SCSC_WLAN_AP_INFO_FILE
u32 offset = 0;
struct file *fp = NULL;
- char *filepath = "/data/misc/conn/.softap.info";
+ char *filepath = "/data/vendor/conn/.softap.info";
char buf[512];
#endif
write_wifi_version_info_file(sdev);
#ifdef CONFIG_SCSC_WLAN_AP_INFO_FILE
- /* writing .softap.info in /data/misc/conn */
+ /* writing .softap.info in /data/vendor/conn */
fp = filp_open(filepath, O_WRONLY | O_CREAT, 0644);
if (!fp) {