diff options
author | Vernon Mauery <vernon.mauery@linux.intel.com> | 2019-05-15 08:45:00 -0700 |
---|---|---|
committer | Vernon Mauery <vernon.mauery@linux.intel.com> | 2019-06-14 16:59:29 +0000 |
commit | 0b979b61c12ffe6ab8a27acf8ad2a0165d687195 (patch) | |
tree | bfc896515978d25a972a5ec9a78291acf3a2cbdf /user_channel/channel_layer.cpp | |
parent | 6fd812d17402f1c8db242ea8b454fe896711ba71 (diff) | |
download | phosphor-host-ipmid-0b979b61c12ffe6ab8a27acf8ad2a0165d687195.tar.gz phosphor-host-ipmid-0b979b61c12ffe6ab8a27acf8ad2a0165d687195.zip |
Remove unused function convertCurrentChannelNum(uint8_t)
convertCurrentChannelNum(uint8_t) was deprecated in favor of an
actual working implementation. It was stubbed out for a while to
provide a broken, backwards-compatible interface, but now that all
of those have been removed in favor of the new interface that
actually works: convertCurrentChannelNum(uint8_t, uint8_t), the
old function can be removed.
Tested: Builds without any errors (means the old interface was removed)
Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
Change-Id: I3796e890c7cc34333116b71a97db268abf5f0e89
Diffstat (limited to 'user_channel/channel_layer.cpp')
-rw-r--r-- | user_channel/channel_layer.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/user_channel/channel_layer.cpp b/user_channel/channel_layer.cpp index 122b3ea..c6866c2 100644 --- a/user_channel/channel_layer.cpp +++ b/user_channel/channel_layer.cpp @@ -58,11 +58,6 @@ bool isValidChannel(const uint8_t chNum) return getChannelConfigObject().isValidChannel(chNum); } -uint8_t convertCurrentChannelNum(const uint8_t chNum) -{ - return getChannelConfigObject().convertToChannelIndexNumber(chNum); -} - bool isValidAuthType(const uint8_t chNum, const EAuthType& authType) { return getChannelConfigObject().isValidAuthType(chNum, authType); |