diff --git a/drivers/reset/core.c b/drivers/reset/core.c index 12550882b24..f0bfad0dab7 100644 --- a/drivers/reset/core.c +++ b/drivers/reset/core.c @@ -236,9 +236,9 @@ reset_control_array_release(FAR struct reset_control_array *resets) * acquired parameters. * * Input Parameters: - * rcdev - An instance of reset_controller_dev type. - * index - ID of the reset controller in the reset controller device. - * shared - Is this a shared (1), or an exclusive (0) reset_control. + * rcdev - An instance of reset_controller_dev type. + * index - ID of the reset controller in the reset controller device. + * shared - Is this a shared (1), or an exclusive (0) reset_control. * acquired - Only one reset_control may be acquired for a given rcdev and * index. * @@ -393,9 +393,9 @@ reset_controller_get_by_name(FAR const char *name) * parameters retrun a reset control. * * Input Parameters: - * name - The reset controller name - * index - The reset controller in reset controller device - * shared - Is this a shared (1), or an exclusive (0) reset_control + * name - The reset controller name + * index - The reset controller in reset controller device + * shared - Is this a shared (1), or an exclusive (0) reset_control * acquired - Flags that used to get a exculsive reset control * * Returned Value: @@ -666,7 +666,7 @@ int reset_control_deassert(FAR struct reset_control *rstc) * that it handles self-deasserting reset lines via .reset(). In that * case, the reset lines are deasserted by default. If that is not the * case, the reset controller driver should implement .deassert() and - * return -ENOTSUPP. + * return -ENOTSUP. */ if (!rstc->rcdev->ops->deassert) @@ -851,8 +851,8 @@ void reset_control_put(FAR struct reset_control *rstc) * Get a list of reset controls using device node. * * Input Parameters: - * name - The reset controller name - * shared - Whether reset controls are shared or not + * name - The reset controller name + * shared - Whether reset controls are shared or not * acquired - Only one reset control may be acquired for a given controller * and ID * diff --git a/include/nuttx/reset/reset.h b/include/nuttx/reset/reset.h index c1a16296434..7eb7e2d2568 100644 --- a/include/nuttx/reset/reset.h +++ b/include/nuttx/reset/reset.h @@ -138,9 +138,9 @@ int reset_control_status(FAR struct reset_control *rstc); * parameters retrun a reset control. * * Input Parameters: - * name - The reset controller name - * index - The reset controller in reset controller device - * shared - Is this a shared (1), or an exclusive (0) reset_control + * name - The reset controller name + * index - The reset controller in reset controller device + * shared - Is this a shared (1), or an exclusive (0) reset_control * acquired - flags that used to get a exculsive reset control * * Returned Value: @@ -210,8 +210,8 @@ int reset_control_device_reset(FAR const char *name); * Get a list of reset controls using device node. * * Input Parameters: - * name - The reset controller name - * shared - Whether reset controls are shared or not + * name - The reset controller name + * shared - Whether reset controls are shared or not * acquired - Only one reset control may be acquired for a given controller * and ID * @@ -308,7 +308,7 @@ reset_control_get_shared(FAR const char *name) * This is to be used to perform a list of resets for a device or power * domain in whatever order. Returns a struct reset_control or NULL errno. * Input Parameters: - * name - The controller name symble + * name - The controller name symble * index - Index of the reset controller * * Returned Value: @@ -342,7 +342,7 @@ reset_control_get_exclusive_by_index(FAR const char *name, int index) * domain in whatever order. Returns a struct reset_control or NULL errno. * * Input Parameters: - * node - Device to be reset by the controller + * node - Device to be reset by the controller * index - Index of the reset controller * * Returned Value: