summaryrefslogtreecommitdiffstats
path: root/qemu/hw/net/rocker/rocker_world.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/hw/net/rocker/rocker_world.c')
-rw-r--r--qemu/hw/net/rocker/rocker_world.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/qemu/hw/net/rocker/rocker_world.c b/qemu/hw/net/rocker/rocker_world.c
index a6b18f175..89777e968 100644
--- a/qemu/hw/net/rocker/rocker_world.c
+++ b/qemu/hw/net/rocker/rocker_world.c
@@ -14,6 +14,7 @@
* GNU General Public License for more details.
*/
+#include "qemu/osdep.h"
#include "qemu/iov.h"
#include "rocker.h"
@@ -97,10 +98,5 @@ enum rocker_world_type world_type(World *world)
const char *world_name(World *world)
{
- switch (world->type) {
- case ROCKER_WORLD_TYPE_OF_DPA:
- return "OF_DPA";
- default:
- return "unknown";
- }
+ return world->ops->name;
}