summaryrefslogtreecommitdiff
path: root/drivers/staging/iio/Documentation/device.txt
diff options
context:
space:
mode:
authorAmit Kucheria <amit.kucheria@verdurent.com>2009-11-09 15:10:15 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2009-12-11 12:23:19 -0800
commit51bf00aef02d410bf74afb31ec2d5dbcedb1a52f (patch)
tree3984a3e1c9e11bcb0713e713bb025f9fa54a0895 /drivers/staging/iio/Documentation/device.txt
parent727acb4fb2143ac7228b9a49f9e2f73f71e748d9 (diff)
Staging: iio: Fix typos in documentation
Spell-check wouln't catch these :) Signed-off-by: Amit Kucheria <amit.kucheria@verdurent.com> Acked-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/iio/Documentation/device.txt')
-rw-r--r--drivers/staging/iio/Documentation/device.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/Documentation/device.txt b/drivers/staging/iio/Documentation/device.txt
index 6916cd333350..69d9570f29fc 100644
--- a/drivers/staging/iio/Documentation/device.txt
+++ b/drivers/staging/iio/Documentation/device.txt
@@ -10,7 +10,7 @@ First allocate one using:
struct iio_dev *indio_dev = iio_allocate_device();
-The fill in the following.
+Then fill in the following:
indio_dev->dev.parent
the struct device associated with the underlying hardware.
@@ -45,5 +45,5 @@ allocated prior to registering the device with the iio-core, but must
be registered afterwards (otherwise the whole parentage of devices
gets confused)
-On remove iio_device_unregister(indio_dev) will remove the device from
+On remove, iio_device_unregister(indio_dev) will remove the device from
the core, and iio_free_device will clean up.