summaryrefslogtreecommitdiffstats
path: root/hwmon.cpp
blob: 4eb47ae0e65b99e381a9db7ab2c288a9e640da12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "hwmon.hpp"

namespace hwmon {

bool getAttributes(const std::string& type, Attributes& attributes)
{
    // *INDENT-OFF*
    auto a = std::find_if(
                typeAttrMap.begin(),
                typeAttrMap.end(),
                [&](const auto & e)
                {
                   return type == getHwmonType(e);
                });
    // *INDENT-ON*

    if (a == typeAttrMap.end())
    {
        return false;
    }

    attributes = *a;
    return true;
}

}  //  namespace hwmon
OpenPOWER on IntegriCloud