Skip to content

Commit

Permalink
net: Remove some minor #warning since it compiler specific
Browse files Browse the repository at this point in the history
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
  • Loading branch information
xiaoxiang781216 authored and pkarashchenko committed May 18, 2023
1 parent 8d56a9b commit cff40aa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion net/bluetooth/bluetooth_poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void bluetooth_poll(FAR struct net_driver_s *dev,
* REVISIT: Need to pass the meta data and the IOB through the callback
*/

#warning Missing logic
/* #warning Missing logic */

/* Perform the application callback */

Expand Down
2 changes: 1 addition & 1 deletion net/bluetooth/bluetooth_recvmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ static uint16_t bluetooth_recvfrom_eventhandler(FAR struct net_driver_s *dev,

/* Make sure that this is the driver to which the socket is bound. */

#warning Missing logic
/* #warning Missing logic */

pstate = pvpriv;
radio = (FAR struct radio_driver_s *)dev;
Expand Down
2 changes: 1 addition & 1 deletion net/bluetooth/bluetooth_sendmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static uint16_t bluetooth_sendto_eventhandler(FAR struct net_driver_s *dev,

/* Make sure that this is the driver to which the socket is connected. */

#warning Missing logic
/* #warning Missing logic */

pstate = pvpriv;
radio = (FAR struct radio_driver_s *)dev;
Expand Down
2 changes: 1 addition & 1 deletion net/can/can_sockif.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ static int can_close(FAR struct socket *psock)
{
/* Yes... inform user-space daemon of socket close. */

#warning Missing logic
/* #warning Missing logic */

/* Free the connection structure */

Expand Down
2 changes: 1 addition & 1 deletion net/ieee802154/ieee802154_poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void ieee802154_poll(FAR struct net_driver_s *dev,
* Need to pass the meta data and the IOB through the callback.
*/

#warning Missing logic
/* #warning Missing logic */

/* Perform the application callback */

Expand Down
2 changes: 1 addition & 1 deletion net/ieee802154/ieee802154_recvmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ static uint16_t

/* Make sure that this is the driver to which the socket is bound. */

#warning Missing logic
/* #warning Missing logic */

pstate = pvpriv;
radio = (FAR struct radio_driver_s *)dev;
Expand Down
2 changes: 1 addition & 1 deletion net/ieee802154/ieee802154_sendmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ static uint16_t ieee802154_sendto_eventhandler(FAR struct net_driver_s *dev,

/* Make sure that this is the driver to which the socket is connected. */

#warning Missing logic
/* #warning Missing logic */

pstate = pvpriv;
radio = (FAR struct radio_driver_s *)dev;
Expand Down

0 comments on commit cff40aa

Please sign in to comment.