summaryrefslogtreecommitdiff
path: root/utils/hwstub/lib/hwstub_virtual.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/hwstub/lib/hwstub_virtual.cpp')
-rw-r--r--utils/hwstub/lib/hwstub_virtual.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/hwstub/lib/hwstub_virtual.cpp b/utils/hwstub/lib/hwstub_virtual.cpp
index fada56fb83..5c9e79e5a1 100644
--- a/utils/hwstub/lib/hwstub_virtual.cpp
+++ b/utils/hwstub/lib/hwstub_virtual.cpp
@@ -221,6 +221,18 @@ error handle::exec_dev(uint32_t addr, uint16_t flags)
221 return p ? p->exec_dev(addr, flags) : error::DISCONNECTED; 221 return p ? p->exec_dev(addr, flags) : error::DISCONNECTED;
222} 222}
223 223
224error handle::cop_dev(uint8_t op, uint8_t args[HWSTUB_COP_ARGS],
225 const void *out_data, size_t out_size, void *in_data, size_t *in_size)
226{
227 (void) op;
228 (void) args;
229 (void) out_data;
230 (void) out_size;
231 (void) in_data;
232 (void) in_size;
233 return error::UNSUPPORTED;
234}
235
224error handle::status() const 236error handle::status() const
225{ 237{
226 return hwstub::handle::status(); 238 return hwstub::handle::status();