arch/xtensa: Remove FAR qualifier for Xtensa-specific files

This PR intends to remove all references to the FAR qualifier from
Xtensa files. FAR is defined as nothing on both architectures.
This commit is contained in:
Tiago Medicci Serrano 2023-04-06 10:43:11 -03:00 committed by Alan Carvalho de Assis
parent 38861f6154
commit 00c3463426
2 changed files with 2 additions and 2 deletions

View File

@ -1789,7 +1789,7 @@ static void wlan_softap_tx_done(uint8_t *data, uint16_t *len, bool status)
int esp32_wlan_sta_set_linkstatus(bool linkstatus)
{
int ret = -EINVAL;
FAR struct wlan_priv_s *priv = &g_wlan_priv[ESP32_WLAN_STA_DEVNO];
struct wlan_priv_s *priv = &g_wlan_priv[ESP32_WLAN_STA_DEVNO];
if (linkstatus)
{

View File

@ -1462,7 +1462,7 @@ static void wlan_softap_tx_done(uint8_t *data, uint16_t *len, bool status)
int esp32s3_wlan_sta_set_linkstatus(bool linkstatus)
{
int ret = -EINVAL;
FAR struct wlan_priv_s *priv = &g_wlan_priv[ESP32S3_WLAN_STA_DEVNO];
struct wlan_priv_s *priv = &g_wlan_priv[ESP32S3_WLAN_STA_DEVNO];
if (priv != NULL)
{