diff options
author | Mark Brown <broonie@kernel.org> | 2020-06-01 14:01:44 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-01 14:01:44 +0200 |
commit | 5fb565b69dabd5a256fc116702331b54a4621dc9 (patch) | |
tree | 55c3cd9ba11101f9c2e3b6789d0b4d87f91e0732 /include/trace | |
parent | Merge remote-tracking branch 'regulator/for-5.7' into regulator-linus (diff) | |
parent | regulator: max8998: max8998_set_current_limit() can be static (diff) | |
download | linux-5fb565b69dabd5a256fc116702331b54a4621dc9.tar.xz linux-5fb565b69dabd5a256fc116702331b54a4621dc9.zip |
Merge remote-tracking branch 'regulator/for-5.8' into regulator-linus
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/regulator.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/trace/events/regulator.h b/include/trace/events/regulator.h index b70583c32c08..72b3ba93b0a5 100644 --- a/include/trace/events/regulator.h +++ b/include/trace/events/regulator.h @@ -70,6 +70,38 @@ DEFINE_EVENT(regulator_basic, regulator_disable_complete, ); +DEFINE_EVENT(regulator_basic, regulator_bypass_enable, + + TP_PROTO(const char *name), + + TP_ARGS(name) + +); + +DEFINE_EVENT(regulator_basic, regulator_bypass_enable_complete, + + TP_PROTO(const char *name), + + TP_ARGS(name) + +); + +DEFINE_EVENT(regulator_basic, regulator_bypass_disable, + + TP_PROTO(const char *name), + + TP_ARGS(name) + +); + +DEFINE_EVENT(regulator_basic, regulator_bypass_disable_complete, + + TP_PROTO(const char *name), + + TP_ARGS(name) + +); + /* * Events that take a range of numerical values, mostly for voltages * and so on. |