doc: Fix warning about fp_capture_result
The enum values need to be documented before the enum itself, otherwise this warning is thrown: warning: Value descriptions for fp_capture_result are missing in source code comment block.
This commit is contained in:
parent
d3a1b86ea4
commit
1d453b5732
1 changed files with 1 additions and 2 deletions
|
@ -163,11 +163,10 @@ int fp_dev_supports_dscv_print(struct fp_dev *dev, struct fp_dscv_print *print)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fp_capture_result:
|
* fp_capture_result:
|
||||||
* Whether a capture failed or completed.
|
|
||||||
*
|
|
||||||
* @FP_CAPTURE_COMPLETE: Capture completed successfully, the capture data has been returned to the caller.
|
* @FP_CAPTURE_COMPLETE: Capture completed successfully, the capture data has been returned to the caller.
|
||||||
* @FP_CAPTURE_FAIL: Capture failed
|
* @FP_CAPTURE_FAIL: Capture failed
|
||||||
*
|
*
|
||||||
|
* Whether a capture failed or completed.
|
||||||
*/
|
*/
|
||||||
enum fp_capture_result {
|
enum fp_capture_result {
|
||||||
FP_CAPTURE_COMPLETE = 0,
|
FP_CAPTURE_COMPLETE = 0,
|
||||||
|
|
Loading…
Reference in a new issue