forked from nuttx/nuttx-update
boards/: Move more drivers directories at were placed too high in the hieararchy.
This commit is contained in:
parent
c8b1dcc5ab
commit
fb50a65756
18 changed files with 25 additions and 1 deletions
4
boards/xtensa/esp32/drivers/Kconfig
Normal file
4
boards/xtensa/esp32/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
4
boards/z16/z16f2811/drivers/Kconfig
Normal file
4
boards/z16/z16f2811/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
4
boards/z80/ez80/drivers/Kconfig
Normal file
4
boards/z80/ez80/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
4
boards/z80/z180/drivers/Kconfig
Normal file
4
boards/z80/z180/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
4
boards/z80/z8/drivers/Kconfig
Normal file
4
boards/z80/z8/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
4
boards/z80/z80/drivers/Kconfig
Normal file
4
boards/z80/z80/drivers/Kconfig
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
# For a description of the syntax of this configuration file,
|
||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||
#
|
|
@ -128,7 +128,7 @@ void work_process(FAR struct kwork_wqueue_s *wqueue, int wndx)
|
|||
*/
|
||||
|
||||
work = (FAR struct work_s *)wqueue->q.head;
|
||||
while (work)
|
||||
while (work != NULL)
|
||||
{
|
||||
/* Is this work ready? It is ready if there is no delay or if
|
||||
* the delay has elapsed. qtime is the time that the work was added
|
||||
|
|
Loading…
Reference in a new issue