mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fpga: remove unused code
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
parent
1c7d57d5f5
commit
ae17d58cc4
2 changed files with 0 additions and 24 deletions
|
@ -66,12 +66,6 @@ public:
|
|||
virtual
|
||||
int prepare();
|
||||
|
||||
virtual
|
||||
int start();
|
||||
|
||||
virtual
|
||||
int stop();
|
||||
|
||||
virtual
|
||||
std::vector<int> getPollFDs();
|
||||
};
|
||||
|
|
|
@ -166,24 +166,6 @@ int FpgaNode::prepare()
|
|||
return Node::prepare();
|
||||
}
|
||||
|
||||
int FpgaNode::start()
|
||||
{
|
||||
int ret = Node::start();
|
||||
if (!ret)
|
||||
state = State::STARTED;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int FpgaNode::stop()
|
||||
{
|
||||
int ret = Node::stop();
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int FpgaNode::_read(Sample *smps[], unsigned cnt)
|
||||
{
|
||||
unsigned read;
|
||||
|
|
Loading…
Add table
Reference in a new issue