summaryrefslogtreecommitdiff
path: root/utils/hwstub/lib/hwstub_net.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/lib/hwstub_net.cpp')
-rw-r--r--utils/hwstub/lib/hwstub_net.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/hwstub/lib/hwstub_net.cpp b/utils/hwstub/lib/hwstub_net.cpp
index ddafea6351..c9d201a761 100644
--- a/utils/hwstub/lib/hwstub_net.cpp
+++ b/utils/hwstub/lib/hwstub_net.cpp
@@ -735,6 +735,18 @@ error handle::exec_dev(uint32_t addr, uint16_t flags)
735 return error::SUCCESS; 735 return error::SUCCESS;
736} 736}
737 737
738error handle::cop_dev(uint8_t op, uint8_t args[HWSTUB_COP_ARGS],
739 const void *out_data, size_t out_size, void *in_data, size_t *in_size)
740{
741 (void) op;
742 (void) args;
743 (void) out_data;
744 (void) out_size;
745 (void) in_data;
746 (void) in_size;
747 return error::UNIMPLEMENTED;
748}
749
738error handle::status() const 750error handle::status() const
739{ 751{
740 return hwstub::handle::status(); 752 return hwstub::handle::status();