diff options
author | Mark Brown <broonie@kernel.org> | 2020-06-01 13:01:44 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-01 13:01:44 +0100 |
commit | 5fb565b69dabd5a256fc116702331b54a4621dc9 (patch) | |
tree | 55c3cd9ba11101f9c2e3b6789d0b4d87f91e0732 /include/trace | |
parent | cc58045486d0f938662b01025c855fd4aea89ea6 (diff) | |
parent | 0b0c0bd818ef76a20f58c3cb1ac96a3056ccb681 (diff) |
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. |