17 May, 2016

1 commit

  • The PWM framework has clarified the concept of reference PWM config (the
    platform dependent config retrieved from the DT or the PWM lookup table)
    and real PWM state.

    Use pwm_get_args() when the PWM user wants to retrieve this reference
    config and not the current state.

    This is part of the rework allowing the PWM framework to support
    hardware readout and expose real PWM state even when the PWM has just
    been requested (before the user calls pwm_config/enable/disable()).

    Signed-off-by: Boris Brezillon
    Acked-by: Kamil Debski
    Signed-off-by: Thierry Reding

    Boris Brezillon
     

21 Sep, 2015

1 commit


13 Apr, 2015

1 commit


17 Mar, 2015

1 commit


10 Mar, 2015

4 commits


12 Nov, 2014

1 commit


04 Aug, 2014

2 commits

  • The dev_set_drvdata() call is equivalent to the platform_set_drvdata() call in
    next line.

    Signed-off-by: Axel Lin
    Signed-off-by: Guenter Roeck

    Axel Lin
     
  • The pwm-fan driver enables control of fans connected to PWM lines.
    This driver uses the PWM framework, so it is compatible with all
    PWM devices that provide drivers through the PWM framework.

    Signed-off-by: Kamil Debski
    Reviewed-by: Varka Bhadram
    Reviewed-by: Tobias Klauser
    [Guenter Roeck: Last argument to devm_of_pwm_get is pointer, use NULL]
    Signed-off-by: Guenter Roeck

    Kamil Debski