From: Heikki Krogerus Date: Tue, 8 Oct 2019 13:26:06 +0000 (+0300) Subject: device property: Fix the description of struct fwnode_operations X-Git-Tag: v5.15~5063^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ed61d36050c57d9eba09511f53d683fd63b04d1;p=platform%2Fkernel%2Flinux-starfive.git device property: Fix the description of struct fwnode_operations Adding description for the device_is_available member which was missing, and fixing the description of the member property_read_int_array. Signed-off-by: Heikki Krogerus Reviewed-by: Andy Shevchenko Signed-off-by: Rafael J. Wysocki --- diff --git a/include/linux/fwnode.h b/include/linux/fwnode.h index a5673c4..9d9dc44 100644 --- a/include/linux/fwnode.h +++ b/include/linux/fwnode.h @@ -49,11 +49,11 @@ struct fwnode_reference_args { * struct fwnode_operations - Operations for fwnode interface * @get: Get a reference to an fwnode. * @put: Put a reference to an fwnode. + * @device_is_available: Return true if the device is available. * @device_get_match_data: Return the device driver match data. * @property_present: Return true if a property is present. - * @property_read_integer_array: Read an array of integer properties. Return - * zero on success, a negative error code - * otherwise. + * @property_read_int_array: Read an array of integer properties. Return zero on + * success, a negative error code otherwise. * @property_read_string_array: Read an array of string properties. Return zero * on success, a negative error code otherwise. * @get_name: Return the name of an fwnode.