lib: Add documentation for fp_driver_type

This commit is contained in:
Bastien Nocera 2018-11-12 16:00:04 +01:00
parent ca148cbcf1
commit 92e3168309

View file

@ -164,6 +164,13 @@ struct usb_id {
unsigned long driver_data;
};
/**
* fp_driver_type:
* @DRIVER_PRIMITIVE: primitive, non-imaging, driver
* @DRIVER_IMAGING: imaging driver
*
* The type of device the driver supports.
*/
enum fp_driver_type {
DRIVER_PRIMITIVE = 0,
DRIVER_IMAGING = 1,