diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2016-05-02 06:05:55 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2016-05-03 07:57:03 -0400 |
commit | 83a98864ff62b23dfa93baeaaf340741e263c02b (patch) | |
tree | 088d73faabe0aa78e36c246f8701febc925f27f1 | |
parent | f55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff) |
pwm: Add missing newline
checkpatch requires that declarations be separated from code by a blank
line. Add one for readability and to silence the warning.
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
-rw-r--r-- | drivers/pwm/core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c index 7831bc6b51dd..bc0c20ac90a1 100644 --- a/drivers/pwm/core.c +++ b/drivers/pwm/core.c | |||
@@ -75,6 +75,7 @@ static void free_pwms(struct pwm_chip *chip) | |||
75 | 75 | ||
76 | for (i = 0; i < chip->npwm; i++) { | 76 | for (i = 0; i < chip->npwm; i++) { |
77 | struct pwm_device *pwm = &chip->pwms[i]; | 77 | struct pwm_device *pwm = &chip->pwms[i]; |
78 | |||
78 | radix_tree_delete(&pwm_tree, pwm->pwm); | 79 | radix_tree_delete(&pwm_tree, pwm->pwm); |
79 | } | 80 | } |
80 | 81 | ||