mirror of https://gitee.com/openkylin/linux.git
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: Randy Dunlap <randy.dunlap@oracle.com> Acked-By: Jochen Friedrich <jochen@scram.de> Signed-off-by: Adrian Bunk <bunk@kernel.org>
This commit is contained in:
parent
d81919c9c2
commit
771fcb58e5
|
@ -16,10 +16,9 @@
|
|||
|
||||
|
||||
/**
|
||||
* dio_match_device - Tell if a DIO device structure has a matching
|
||||
* DIO device id structure
|
||||
* dio_match_device - Tell if a DIO device structure has a matching DIO device id structure
|
||||
* @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
|
||||
* system is in its list of supported devices. Returns the matching
|
||||
|
@ -102,10 +101,9 @@ void dio_unregister_driver(struct dio_driver *drv)
|
|||
|
||||
|
||||
/**
|
||||
* dio_bus_match - Tell if a DIO device structure has a matching DIO
|
||||
* device id structure
|
||||
* @ids: array of DIO device id structures to search in
|
||||
* dio_bus_match - Tell if a DIO device structure has a matching DIO device id structure
|
||||
* @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
|
||||
* system is in its list of supported devices. Returns the matching
|
||||
|
|
Loading…
Reference in New Issue