diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2014-05-19 22:42:32 +0200 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2014-05-21 09:03:07 +0200 |
commit | 3796ce1d4d4b330a75005c5eda105603ce9d4071 (patch) | |
tree | fdaed3c8281bee1e5bba3400d2f5ca7aecb47ce1 /include/linux/pwm.h | |
parent | 9c88669c2cfc91158f157b5584103ff7e5b6bedb (diff) | |
download | blackbird-op-linux-3796ce1d4d4b330a75005c5eda105603ce9d4071.tar.gz blackbird-op-linux-3796ce1d4d4b330a75005c5eda105603ce9d4071.zip |
pwm: add period and polarity to struct pwm_lookup
Add period and polarity members to struct pwm_lookup so that platforms
using the lookup table can be treated the same way as those using the
device tree.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
Diffstat (limited to 'include/linux/pwm.h')
-rw-r--r-- | include/linux/pwm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/pwm.h b/include/linux/pwm.h index 4717f54051cb..2f45e2fe5b93 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h @@ -274,6 +274,8 @@ struct pwm_lookup { unsigned int index; const char *dev_id; const char *con_id; + unsigned int period; + enum pwm_polarity polarity; }; #define PWM_LOOKUP(_provider, _index, _dev_id, _con_id) \ |