summaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-01 12:37:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-01 12:37:44 -0600
commit05988ab6d7bd07be7f874e78a89fea1e6e7cf9c3 (patch)
treed4ea6f24e116312d807f43a99ef8bbc5c92dd6b5 /nuttx/drivers
parentea2f66e68f04f45959a545516e8c34f3e87f2f7e (diff)
downloadpx4-nuttx-05988ab6d7bd07be7f874e78a89fea1e6e7cf9c3.tar.gz
px4-nuttx-05988ab6d7bd07be7f874e78a89fea1e6e7cf9c3.tar.bz2
px4-nuttx-05988ab6d7bd07be7f874e78a89fea1e6e7cf9c3.zip
Move include/nuttx/timer.h, rtc.h and watchdog.h to include/nuttx/timers/.
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/README.txt4
-rw-r--r--nuttx/drivers/timers/Kconfig8
-rw-r--r--nuttx/drivers/timers/rtc.c2
-rw-r--r--nuttx/drivers/timers/timer.c2
-rw-r--r--nuttx/drivers/timers/watchdog.c2
5 files changed, 9 insertions, 9 deletions
diff --git a/nuttx/drivers/README.txt b/nuttx/drivers/README.txt
index 9c8c4d9b7..39b461092 100644
--- a/nuttx/drivers/README.txt
+++ b/nuttx/drivers/README.txt
@@ -38,7 +38,7 @@ ramdisk.c
timer.c
Provides the "upper half" for a generic timer driver. See
- include/nuttx/timer.h for more information.
+ include/nuttx/timers/timer.h for more information.
rwbuffer.c
A facility that can be use by any block driver in-order to add
@@ -46,7 +46,7 @@ rwbuffer.c
watchdog.c
Provides the "upper half" for a generic watchdog driver. See
- include/nuttx/watchdog.h for more information.
+ include/nuttx/timers/watchdog.h for more information.
Subdirectories of this directory:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/nuttx/drivers/timers/Kconfig b/nuttx/drivers/timers/Kconfig
index 5e918b65b..2502b1d8d 100644
--- a/nuttx/drivers/timers/Kconfig
+++ b/nuttx/drivers/timers/Kconfig
@@ -8,7 +8,7 @@ menuconfig TIMER
default n
---help---
This selection enables building of the "upper-half" timer
- driver. See include/nuttx/timer.h for further timer driver
+ driver. See include/nuttx/timers/timer.h for further timer driver
information.
menuconfig RTC
@@ -16,7 +16,7 @@ menuconfig RTC
default n
---help---
This selection enables configuration of a real time clock (RTCdriver.
- See include/nuttx/rtc.h for further RTC driver information.
+ See include/nuttx/timers/rtc.h for further RTC driver information.
Most RTC drivers are MCU specific and may require other specific
settings.
@@ -73,7 +73,7 @@ config RTC_DRIVER
default n
---help---
This selection enables building of the "upper-half" RTC
- driver. See include/nuttx/rtc.h for further RTC driver
+ driver. See include/nuttx/timers/rtc.h for further RTC driver
information.
if RTC_DRIVER
@@ -122,7 +122,7 @@ menuconfig WATCHDOG
default n
---help---
This selection enables building of the "upper-half" watchdog timer
- driver. See include/nuttx/watchdog.h for further watchdog timer driver
+ driver. See include/nuttx/timers/watchdog.h for further watchdog timer driver
information.
if WATCHDOG
diff --git a/nuttx/drivers/timers/rtc.c b/nuttx/drivers/timers/rtc.c
index 68f7366af..6d39b6c99 100644
--- a/nuttx/drivers/timers/rtc.c
+++ b/nuttx/drivers/timers/rtc.c
@@ -47,7 +47,7 @@
#include <nuttx/kmalloc.h>
#include <nuttx/fs/fs.h>
-#include <nuttx/rtc.h>
+#include <nuttx/timers/rtc.h>
/****************************************************************************
* Private Types
diff --git a/nuttx/drivers/timers/timer.c b/nuttx/drivers/timers/timer.c
index fe81fc44f..57c2c0eca 100644
--- a/nuttx/drivers/timers/timer.c
+++ b/nuttx/drivers/timers/timer.c
@@ -53,7 +53,7 @@
#include <nuttx/fs/fs.h>
#include <nuttx/irq.h>
#include <nuttx/kmalloc.h>
-#include <nuttx/timer.h>
+#include <nuttx/timers/timer.h>
#ifdef CONFIG_TIMER
diff --git a/nuttx/drivers/timers/watchdog.c b/nuttx/drivers/timers/watchdog.c
index d46f7f99e..e6bef99ac 100644
--- a/nuttx/drivers/timers/watchdog.c
+++ b/nuttx/drivers/timers/watchdog.c
@@ -52,7 +52,7 @@
#include <nuttx/fs/fs.h>
#include <nuttx/irq.h>
#include <nuttx/kmalloc.h>
-#include <nuttx/watchdog.h>
+#include <nuttx/timers/watchdog.h>
#ifdef CONFIG_WATCHDOG