Date: Tue, 18 Sep 2012 02:19:43 +0000 (UTC) From: Kevin Lo <kevlo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r240627 - in head/sys/dev: ata mly Message-ID: <201209180219.q8I2JhV2021161@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevlo Date: Tue Sep 18 02:19:43 2012 New Revision: 240627 URL: http://svn.freebsd.org/changeset/base/240627 Log: Remove bogus break statements. Obtained from: DragonFly Modified: head/sys/dev/ata/ata-lowlevel.c head/sys/dev/mly/mly.c Modified: head/sys/dev/ata/ata-lowlevel.c ============================================================================== --- head/sys/dev/ata/ata-lowlevel.c Tue Sep 18 02:14:47 2012 (r240626) +++ head/sys/dev/ata/ata-lowlevel.c Tue Sep 18 02:19:43 2012 (r240627) @@ -370,7 +370,6 @@ ata_end_transaction(struct ata_request * "%s trying to write on read buffer\n", ata_cmd2str(request)); goto end_finished; - break; } ata_pio_write(request, length); request->donecount += length; Modified: head/sys/dev/mly/mly.c ============================================================================== --- head/sys/dev/mly/mly.c Tue Sep 18 02:14:47 2012 (r240626) +++ head/sys/dev/mly/mly.c Tue Sep 18 02:19:43 2012 (r240627) @@ -1350,7 +1350,6 @@ mly_process_event(struct mly_softc *sc, if (action == 'r') sc->mly_btl[bus][target].mb_flags |= MLY_BTL_RESCAN; break; - break; case 's': /* report of sense data */ if (((ssd->flags & SSD_KEY) == SSD_KEY_NO_SENSE) || (((ssd->flags & SSD_KEY) == SSD_KEY_NOT_READY) &&
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209180219.q8I2JhV2021161>