Commit 771fcb58 authored by Randy Dunlap's avatar Randy Dunlap Committed by Adrian Bunk

dio: fix kernel-doc notation

Fix kernel-doc in drivers/dio/ so that it is formatted correctly
and the parameter names match the function parameters.
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Acked-By: default avatarJochen Friedrich <jochen@scram.de>
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
parent d81919c9
...@@ -15,11 +15,10 @@ ...@@ -15,11 +15,10 @@
#include <linux/dio.h> #include <linux/dio.h>
/** /**
* dio_match_device - Tell if a DIO device structure has a matching * dio_match_device - Tell if a DIO device structure has a matching DIO device id structure
* DIO device id structure
* @ids: array of DIO device id structures to search in * @ids: array of DIO device id structures to search in
* @dev: the DIO device structure to match against * @d: the DIO device structure to match against
* *
* Used by a driver to check whether a DIO device present in the * Used by a driver to check whether a DIO device present in the
* system is in its list of supported devices. Returns the matching * system is in its list of supported devices. Returns the matching
...@@ -66,7 +65,7 @@ static int dio_device_probe(struct device *dev) ...@@ -66,7 +65,7 @@ static int dio_device_probe(struct device *dev)
} }
/** /**
* dio_register_driver - register a new DIO driver * dio_register_driver - register a new DIO driver
* @drv: the driver structure to register * @drv: the driver structure to register
* *
...@@ -85,7 +84,7 @@ int dio_register_driver(struct dio_driver *drv) ...@@ -85,7 +84,7 @@ int dio_register_driver(struct dio_driver *drv)
} }
/** /**
* dio_unregister_driver - unregister a DIO driver * dio_unregister_driver - unregister a DIO driver
* @drv: the driver structure to unregister * @drv: the driver structure to unregister
* *
...@@ -101,11 +100,10 @@ void dio_unregister_driver(struct dio_driver *drv) ...@@ -101,11 +100,10 @@ void dio_unregister_driver(struct dio_driver *drv)
} }
/** /**
* dio_bus_match - Tell if a DIO device structure has a matching DIO * dio_bus_match - Tell if a DIO device structure has a matching DIO device id structure
* device id structure
* @ids: array of DIO device id structures to search in
* @dev: the DIO device structure to match against * @dev: the DIO device structure to match against
* @drv: the &device_driver that points to the array of DIO device id structures to search
* *
* Used by a driver to check whether a DIO device present in the * Used by a driver to check whether a DIO device present in the
* system is in its list of supported devices. Returns the matching * system is in its list of supported devices. Returns the matching
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment