incubator-nuttx/drivers/wireless/bluetooth
Gregory Nutt 3cad9f498f drivers/mkrd.c
drivers/net/telnet.c
 drivers/wireless/bluetooth/bt_uart_bcm4343x.c
 drivers/wireless/ieee802154/mrf24j40/mrf24j40.c

Kernel memory was allocated using kmm_malloc() or kmm_zalloc() but freed with with the user-space allocator free().  In the FLAT build, this is bad style, but not harmful because there is only a single, heap and malloc() and kmm_malloc() map to the same function.

But that is not true in the case of the PROTECTED or KERNEL builds.  In those cases, there are separate heaps.  kmm_malloc() will allocate from the kernel heap.  free() will attempt to free the kernel memory from the user heap and will cause an assertion (or other obscure failure if assertions are disabled).
2020-08-04 13:00:53 -05:00
..
Kconfig drivers/wireless/bluetooth/bt_uart_bcm4343x.c: BCM4343x HCIUART support. 2019-10-04 09:29:51 -06:00
Make.defs build: Move INCDIROPT to common place 2020-05-18 15:02:55 -06:00
bt_null.c fix sim:bluetooth compiler error (#18) 2019-12-31 09:30:44 -06:00
bt_uart.c Fix wait loop and void cast (#24) 2020-01-02 10:54:43 -06:00
bt_uart.h
bt_uart_bcm4343x.c drivers/mkrd.c 2020-08-04 13:00:53 -05:00
bt_uart_cc2564.c fix sim:bluetooth compiler error (#18) 2019-12-31 09:30:44 -06:00
bt_uart_generic.c fix sim:bluetooth compiler error (#18) 2019-12-31 09:30:44 -06:00
bt_uart_shim.c Run nxstyle all .c and .h files modified by PR. 2020-05-17 14:01:00 -03:00