Missed style fixes.

This commit is contained in:
Marius Strobl 2009-06-14 00:15:26 +00:00
parent 481d6b549b
commit 9f91930a85
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194139

View file

@ -21,8 +21,6 @@
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
*/
#include <sys/cdefs.h>
@ -86,11 +84,11 @@ ofwd_startio(struct ofwd_softc *sc, struct bio *bp)
switch (bp->bio_cmd) {
case BIO_READ:
r = OF_read(sc->ofwd_instance, (void *)bp->bio_data,
bp->bio_length);
bp->bio_length);
break;
case BIO_WRITE:
r = OF_write(sc->ofwd_instance, (void *)bp->bio_data,
bp->bio_length);
bp->bio_length);
break;
}
if (r != bp->bio_length)
@ -161,7 +159,7 @@ g_ofwd_init(struct g_class *mp __unused)
}
sc = (struct ofwd_softc *)malloc(sizeof *sc, M_DEVBUF,
M_WAITOK|M_ZERO);
M_WAITOK | M_ZERO);
bioq_init(&sc->ofwd_bio_queue);
mtx_init(&sc->ofwd_queue_mtx, "ofwd bio queue", NULL, MTX_DEF);
sc->ofwd_instance = ifd;