summaryrefslogtreecommitdiff
path: root/tizen
diff options
context:
space:
mode:
authorJinhyung Choi <jinh0.choi@samsung.com>2016-12-20 19:12:20 +0900
committerSeokYeon Hwang <syeon.hwang@samsung.com>2016-12-21 18:02:43 +0900
commitc2f925da1c4e7564e76235416338869a41e73fe3 (patch)
tree5297400b156a19ef23dd11581ca4bf95f36b801a /tizen
parente136d6060d24e6184a772e30dfe51f174d3d4a8b (diff)
downloadqemu-c2f925da1c4e7564e76235416338869a41e73fe3.tar.gz
qemu-c2f925da1c4e7564e76235416338869a41e73fe3.tar.bz2
qemu-c2f925da1c4e7564e76235416338869a41e73fe3.zip
virtfs: remove build break ifdef w/ --diable-virtfs
Change-Id: I1c5ccd16b7cff27582ca28acf3e2b29978729db2 Signed-off-by: Jinhyung Choi <jinh0.choi@samsung.com>
Diffstat (limited to 'tizen')
-rw-r--r--tizen/src/util/device_hotplug.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tizen/src/util/device_hotplug.c b/tizen/src/util/device_hotplug.c
index 3f688028a7..9f56471ec8 100644
--- a/tizen/src/util/device_hotplug.c
+++ b/tizen/src/util/device_hotplug.c
@@ -280,18 +280,10 @@ static void device_hotplug_handler(EventNotifier *e)
do_sdcard_detach(state->opaque);
break;
case ATTACH_HDS:
-#ifdef CONFIG_VIRTFS
do_hds_attach(state->opaque);
-#else
- LOG_WARNING("VirtFS is not enabled.\n");
-#endif
break;
case DETACH_HDS:
-#ifdef CONFIG_VIRTFS
do_hds_detach(state->opaque);
-#else
- LOG_WARNING("VirtFS is not enabled.\n");
-#endif
break;
default:
break;