summaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-13 02:49:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-13 02:49:10 +0000
commitcad9ed8e13b1b5e7448f41a71837d0e52ca0ad42 (patch)
tree78792e9d8701bc3b38f60de71caff9786884c875 /nuttx/drivers
parentd455b6a25a41db11963610dca5f4a63eee1a316c (diff)
downloadpx4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.tar.gz
px4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.tar.bz2
px4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.zip
STM32 fixes for F4 32-bit timers
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4300 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/input/tsc2007.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/drivers/input/tsc2007.c b/nuttx/drivers/input/tsc2007.c
index 3afe926fe..52f8652a7 100644
--- a/nuttx/drivers/input/tsc2007.c
+++ b/nuttx/drivers/input/tsc2007.c
@@ -257,13 +257,13 @@ static void tsc2007_notify(FAR struct tsc2007_dev_s *priv)
if (priv->nwaiters > 0)
{
/* After posting this semaphore, we need to exit because the TSC2007
- * is no longer avaialable.
+ * is no longer available.
*/
sem_post(&priv->waitsem);
}
- /* If there are threads waiting on poll() for TSC2007 data to become availabe,
+ /* If there are threads waiting on poll() for TSC2007 data to become available,
* then wake them up now. NOTE: we wake up all waiting threads because we
* do not know that they are going to do. If they all try to read the data,
* then some make end up blocking after all.