summaryrefslogtreecommitdiffstats
path: root/fault-monitor/fru-fault-monitor.cpp
blob: 1213128b1c64496c6988ba9ce456c12d6d666d76 (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
27
28
29
30
31
32
33
34
35
36
37
38
#include "fru-fault-monitor.hpp"
namespace phosphor
{
namespace led
{
namespace fru
{
namespace fault
{
namespace monitor
{

void action(sdbusplus::bus::bus& bus,
            const std::string& unit,
            bool assert)
{
    return;
}

int Add::created(sd_bus_message* msg,
                 void* data,
                 sd_bus_error* retError)
{
    return 0;
}

int Remove::removed(sd_bus_message* msg,
                    void* data,
                    sd_bus_error* retError)
{
    return 0;
}

}//namespace monitor
}//namespace fault
}//namespace fru
}//namespace led
}//namespace phosphor
OpenPOWER on IntegriCloud