diff options
Diffstat (limited to 'device/ds_routines.c')
-rw-r--r-- | device/ds_routines.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/device/ds_routines.c b/device/ds_routines.c index 5b8fb3e2..5b573389 100644 --- a/device/ds_routines.c +++ b/device/ds_routines.c @@ -104,6 +104,10 @@ extern struct device_emulation_ops linux_pcmcia_emulation_ops; #endif #endif #endif +#ifdef MACH_HYP +extern struct device_emulation_ops hyp_block_emulation_ops; +extern struct device_emulation_ops hyp_net_emulation_ops; +#endif extern struct device_emulation_ops mach_device_emulation_ops; /* List of emulations. */ @@ -118,6 +122,10 @@ static struct device_emulation_ops *emulation_list[] = #endif #endif #endif +#ifdef MACH_HYP + &hyp_block_emulation_ops, + &hyp_net_emulation_ops, +#endif &mach_device_emulation_ops, }; |