aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@gmail.com>2016-05-02 12:05:55 +0200
committerThierry Reding <thierry.reding@gmail.com>2016-05-03 13:57:03 +0200
commit83a98864ff62b23dfa93baeaaf340741e263c02b (patch)
tree088d73faabe0aa78e36c246f8701febc925f27f1 /drivers/pwm
parentLinux 4.6-rc1 (diff)
downloadlinux-dev-83a98864ff62b23dfa93baeaaf340741e263c02b.tar.xz
linux-dev-83a98864ff62b23dfa93baeaaf340741e263c02b.zip
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>
Diffstat (limited to 'drivers/pwm')
-rw-r--r--drivers/pwm/core.c1
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)
for (i = 0; i < chip->npwm; i++) {
struct pwm_device *pwm = &chip->pwms[i];
+
radix_tree_delete(&pwm_tree, pwm->pwm);
}