From: Kevin Wolf Date: Thu, 2 Sep 2010 15:48:32 +0000 (+0200) Subject: raw-posix: Don't use file name for host_cdrom detection on Linux X-Git-Tag: TizenStudio_2.0_p2.3~4161^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8e028279cfc30b495fbac50ec7f9bf1bd1fa482;p=sdk%2Femulator%2Fqemu.git raw-posix: Don't use file name for host_cdrom detection on Linux On Linux, we have code to detect CD-ROMs using an ioctl. We shouldn't lose anything but false positives by removing the check for a /dev/cd* path. Signed-off-by: Kevin Wolf --- diff --git a/block/raw-posix.c b/block/raw-posix.c index 72fb8ce..0fce449 100644 --- a/block/raw-posix.c +++ b/block/raw-posix.c @@ -1154,9 +1154,6 @@ static int cdrom_probe_device(const char *filename) int fd, ret; int prio = 0; - if (strstart(filename, "/dev/cd", NULL)) - prio = 50; - fd = open(filename, O_RDONLY | O_NONBLOCK); if (fd < 0) { goto out;