Skip to content

Commit

Permalink
fix sim:bluetooth compiler error (#18)
Browse files Browse the repository at this point in the history
wireless/bluetooth/bt_null.c:274:10: warning: implicit declaration of function 'bt_driver_register'; did you mean 'bt_netdev_register'? [-Wimplicit-function-declaration]

   return bt_driver_register(&g_bt_null);

sim_bringup.c:324:9: error: too few arguments to function 'bt_netdev_register'

   ret = bt_netdev_register();
  • Loading branch information
xiaoxiang781216 committed Dec 31, 2019
1 parent 1c6bf2c commit df7ef81
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 20 deletions.
18 changes: 2 additions & 16 deletions boards/sim/sim/sim/src/sim_bringup.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int sim_bringup(void)
#ifdef CONFIG_RAMMTD
FAR uint8_t *ramstart;
#endif
int ret;
int ret = OK;

#ifdef CONFIG_FS_BINFS
/* Mount the binfs file system */
Expand Down Expand Up @@ -300,7 +300,6 @@ int sim_bringup(void)
}
#endif

#ifdef CONFIG_WIRELESS_BLUETOOTH
#ifdef CONFIG_BLUETOOTH_NULL
/* Register the NULL Bluetooth network device */

Expand All @@ -311,18 +310,5 @@ int sim_bringup(void)
}
#endif

/* Initialize the Bluetooth stack (This will fail if no device has been
* registered).
*/

ret = bt_netdev_register();
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: bt_netdev_register() failed: %d\n", ret);
}

#endif

UNUSED(ret);
return OK;
return ret;
}
2 changes: 1 addition & 1 deletion drivers/wireless/bluetooth/bt_null.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,5 +271,5 @@ int btnull_register(void)
{
/* Register the driver with the Bluetooth stack */

return bt_driver_register(&g_bt_null);
return bt_netdev_register(&g_bt_null);
}
2 changes: 1 addition & 1 deletion drivers/wireless/bluetooth/bt_uart_bcm4343x.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ int btuart_register(FAR const struct btuart_lowerhalf_s *lower)
ret = bt_netdev_register(&upper->dev);
if (ret < 0)
{
wlerr("ERROR: bt_driver_register failed: %d\n", ret);
wlerr("ERROR: bt_netdev_register failed: %d\n", ret);
kmm_free(upper);
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/wireless/bluetooth/bt_uart_cc2564.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ int btuart_register(FAR const struct btuart_lowerhalf_s *lower)
ret = bt_netdev_register(&upper->dev);
if (ret < 0)
{
wlerr("ERROR: bt_driver_register failed: %d\n", ret);
wlerr("ERROR: bt_netdev_register failed: %d\n", ret);
kmm_free(upper);
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/wireless/bluetooth/bt_uart_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int btuart_register(FAR const struct btuart_lowerhalf_s *lower)
ret = bt_netdev_register(&upper->dev);
if (ret < 0)
{
wlerr("ERROR: bt_driver_register failed: %d\n", ret);
wlerr("ERROR: bt_netdev_registe failed: %d\n", ret);
kmm_free(upper);
}

Expand Down

0 comments on commit df7ef81

Please sign in to comment.