]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
ide-cd: unify moving to the next buffer in cdrom_rw_intr()
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Fri, 1 Feb 2008 22:09:27 +0000 (23:09 +0100)
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Fri, 1 Feb 2008 22:09:27 +0000 (23:09 +0100)
Use the fact that for the first loop rq->current_nr_sectors is always
set and unify moving to the next buffer for read/write requests.

There should be no functionality changes caused by this patch.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
drivers/ide/ide-cd.c

index 4b395e015e761b8eba6c8107d13c163a98ddf73b..0f17117c5aa04717949ea89b3c83096e5433d714 100644 (file)
@@ -1302,13 +1302,6 @@ static ide_startstop_t cdrom_rw_intr(ide_drive_t *drive)
        while (sectors_to_transfer > 0) {
                int this_transfer;
 
-               /*
-                * If we've filled the present buffer but there's another
-                * chained buffer after it, move on.
-                */
-               if (!write && rq->current_nr_sectors == 0 && rq->nr_sectors)
-                       cdrom_end_request(drive, 1);
-
                if (!rq->current_nr_sectors) {
                        if (!write)
                                /*
@@ -1342,7 +1335,7 @@ static ide_startstop_t cdrom_rw_intr(ide_drive_t *drive)
                /*
                 * current buffer complete, move on
                 */
-               if (write && rq->current_nr_sectors == 0 && rq->nr_sectors)
+               if (rq->current_nr_sectors == 0 && rq->nr_sectors)
                        cdrom_end_request(drive, 1);
        }