aboutsummaryrefslogtreecommitdiffstats
path: root/hw/ide
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@redhat.com>2011-04-28 20:04:40 +0530
committerKevin Wolf <kwolf@redhat.com>2011-05-03 11:29:21 +0200
commita7acf552e2cfb42ea1b27966b7f318eca2cc478a (patch)
tree586799862a1f50302370a7d12653c9d6a249b8cf /hw/ide
parente80fec7feb62c741df5360c1841ca49e4087c1cd (diff)
atapi: Move comment to proper place
Move misplaced comment for media_is_dvd() Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/ide')
-rw-r--r--hw/ide/atapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/atapi.c b/hw/ide/atapi.c
index 690a0abdd..86b18d894 100644
--- a/hw/ide/atapi.c
+++ b/hw/ide/atapi.c
@@ -71,12 +71,12 @@ static void lba_to_msf(uint8_t *buf, int lba)
buf[2] = lba % 75;
}
-/* XXX: DVDs that could fit on a CD will be reported as a CD */
static inline int media_present(IDEState *s)
{
return (s->nb_sectors > 0);
}
+/* XXX: DVDs that could fit on a CD will be reported as a CD */
static inline int media_is_dvd(IDEState *s)
{
return (media_present(s) && s->nb_sectors > CD_MAX_SECTORS);