diff options
author | Heikki Krogerus <heikki.krogerus@linux.intel.com> | 2019-10-08 16:26:06 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-10-11 12:33:26 +0300 |
commit | 8ed61d36050c57d9eba09511f53d683fd63b04d1 (patch) | |
tree | a305c371541784f3c86ff87582e479a1fdf56fd1 /include/linux/fwnode.h | |
parent | f1ce39df508de4a4abd83daa3e589ccea46b1480 (diff) | |
download | linux-8ed61d36050c57d9eba09511f53d683fd63b04d1.tar.xz |
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 <heikki.krogerus@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/fwnode.h')
-rw-r--r-- | include/linux/fwnode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/fwnode.h b/include/linux/fwnode.h index a5673c4674cf..9d9dc444d787 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. |