Skip to content

Commit

Permalink
reset: TRIVIAL: Add line break at same place for similar APIs
Browse files Browse the repository at this point in the history
Standardise the way inline functions:

  devm_reset_control_get_shared_by_index
  devm_reset_control_get_exclusive_by_index

... are formatted.

Signed-off-by: Lee Jones <[email protected]>
Signed-off-by: Philipp Zabel <[email protected]>
  • Loading branch information
Lee Jones authored and pH5 committed Jun 29, 2016
1 parent c33d61a commit 0bcc0ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/reset.h
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ devm_reset_control_get_exclusive_by_index(struct device *dev, int index)
* this function, reset_control_put() is called automatically on driver detach.
* See reset_control_get_shared() for more information.
*/
static inline struct reset_control *devm_reset_control_get_shared_by_index(
struct device *dev, int index)
static inline struct reset_control *
devm_reset_control_get_shared_by_index(struct device *dev, int index)
{
return __devm_reset_control_get(dev, NULL, index, 1);
}
Expand Down

0 comments on commit 0bcc0ea

Please sign in to comment.