diff options
Diffstat (limited to 'utils/hwstub/stub/stmp/target.c')
-rw-r--r-- | utils/hwstub/stub/stmp/target.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/hwstub/stub/stmp/target.c b/utils/hwstub/stub/stmp/target.c index 60411f908e..11516e5492 100644 --- a/utils/hwstub/stub/stmp/target.c +++ b/utils/hwstub/stub/stmp/target.c @@ -196,6 +196,11 @@ int target_get_info(int info, void **buffer) *buffer = &g_stmp; return sizeof(g_stmp); } + else if(info == HWSTUB_INFO_TARGET) + { + *buffer = &g_target; + return sizeof(g_target); + } else return -1; } |