Commit 917a4304 authored by Alan Tull's avatar Alan Tull Committed by Greg Kroah-Hartman

fpga: region: kernel-doc fixes

Fix formatting and some cleanup for the kernel-doc documentation in
fpga-region.c
Signed-off-by: default avatarAlan Tull <atull@kernel.org>
Acked-by: default avatarMoritz Fischer <mdf@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 060ac5c8
...@@ -81,13 +81,16 @@ static void fpga_region_put(struct fpga_region *region) ...@@ -81,13 +81,16 @@ static void fpga_region_put(struct fpga_region *region)
/** /**
* fpga_region_program_fpga - program FPGA * fpga_region_program_fpga - program FPGA
*
* @region: FPGA region * @region: FPGA region
*
* Program an FPGA using fpga image info (region->info). * Program an FPGA using fpga image info (region->info).
* If the region has a get_bridges function, the exclusive reference for the * If the region has a get_bridges function, the exclusive reference for the
* bridges will be held if programming succeeds. This is intended to prevent * bridges will be held if programming succeeds. This is intended to prevent
* reprogramming the region until the caller considers it safe to do so. * reprogramming the region until the caller considers it safe to do so.
* The caller will need to call fpga_bridges_put() before attempting to * The caller will need to call fpga_bridges_put() before attempting to
* reprogram the region. * reprogram the region.
*
* Return 0 for success or negative error code. * Return 0 for success or negative error code.
*/ */
int fpga_region_program_fpga(struct fpga_region *region) int fpga_region_program_fpga(struct fpga_region *region)
...@@ -216,7 +219,7 @@ void fpga_region_free(struct fpga_region *region) ...@@ -216,7 +219,7 @@ void fpga_region_free(struct fpga_region *region)
} }
EXPORT_SYMBOL_GPL(fpga_region_free); EXPORT_SYMBOL_GPL(fpga_region_free);
/* /**
* fpga_region_register - register a FPGA region * fpga_region_register - register a FPGA region
* @region: FPGA region created by fpga_region_create * @region: FPGA region created by fpga_region_create
* Return: 0 or -errno * Return: 0 or -errno
...@@ -228,7 +231,7 @@ int fpga_region_register(struct fpga_region *region) ...@@ -228,7 +231,7 @@ int fpga_region_register(struct fpga_region *region)
} }
EXPORT_SYMBOL_GPL(fpga_region_register); EXPORT_SYMBOL_GPL(fpga_region_register);
/* /**
* fpga_region_unregister - unregister a FPGA region * fpga_region_unregister - unregister a FPGA region
* @region: FPGA region * @region: FPGA region
*/ */
......
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