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:
parent
38861f6154
commit
00c3463426
|
@ -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 esp32_wlan_sta_set_linkstatus(bool linkstatus)
|
||||||
{
|
{
|
||||||
int ret = -EINVAL;
|
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)
|
if (linkstatus)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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 esp32s3_wlan_sta_set_linkstatus(bool linkstatus)
|
||||||
{
|
{
|
||||||
int ret = -EINVAL;
|
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)
|
if (priv != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue