From ba07978c2abf9ecd40f686796b586aaed6d71c46 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 8 Apr 2018 07:29:14 -0600 Subject: [PATCH] Trivial update to some comments --- include/nuttx/sensors/cluster_driver.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/nuttx/sensors/cluster_driver.h b/include/nuttx/sensors/cluster_driver.h index 49cfc8ab69..3c08486c6c 100644 --- a/include/nuttx/sensors/cluster_driver.h +++ b/include/nuttx/sensors/cluster_driver.h @@ -79,6 +79,7 @@ * . of the sensor. * * To perform I/O to a sensor, the cluster driver needs... + * * > A pointer to the spi instance (struct spi_dev_s *). The cluster driver * has this pointer, because it provides it to the leaf driver as an input * parameter to the leaf driver's registration function. @@ -88,7 +89,7 @@ * > A pointer to the leaf driver instance. The leaf driver communicates this * pointer to the cluster driver by storing it into the config struct * leaf_handle (struct spi_dev_s *) field that is also passed as an in/out - * parameter in the leaf driver's registration function. + * parameter in the leaf driver's registration function. * * With the above information, the sensor cluster driver may efficiently access * multiple sensors and aggregate their data.