pwm: twl: Use to_twl() instead of container_of()
authorJohannes Thumshirn <morbidrsa@gmail.com>
Sat, 16 Feb 2013 18:20:51 +0000 (19:20 +0100)
committerThierry Reding <thierry.reding@avionic-design.de>
Sun, 17 Feb 2013 10:27:07 +0000 (11:27 +0100)
Always use to_twl() for converting into private data instead of
container_of().

Signed-off-by: Johannes Thumshirn <morbidrsa@gmail.com>
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
drivers/pwm/pwm-twl.c

index f783efcd14bbffa129f24b18708f8baff80b65a8..bf3fda294223abfb546e7877b6c897e4e107836b 100644 (file)
@@ -200,8 +200,7 @@ out:
 
 static void twl4030_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
 {
-       struct twl_pwm_chip *twl = container_of(chip, struct twl_pwm_chip,
-                                               chip);
+       struct twl_pwm_chip *twl = to_twl(chip);
        int ret;
        u8 val, mask;
 
@@ -231,8 +230,7 @@ out:
 
 static int twl6030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
 {
-       struct twl_pwm_chip *twl = container_of(chip, struct twl_pwm_chip,
-                                               chip);
+       struct twl_pwm_chip *twl = to_twl(chip);
        int ret;
        u8 val;
 
@@ -255,8 +253,7 @@ out:
 
 static void twl6030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
 {
-       struct twl_pwm_chip *twl = container_of(chip, struct twl_pwm_chip,
-                                               chip);
+       struct twl_pwm_chip *twl = to_twl(chip);
        int ret;
        u8 val;
 
This page took 0.043722 seconds and 5 git commands to generate.