ioat(4): Minor style cleanups

Suggested by:	ngie
Reviewed by:	jimharris
Approved by:	markj (mentor)
Sponsored by:	EMC / Isilon Storage Division
Differential Revision:	https://reviews.freebsd.org/D3481
This commit is contained in:
Conrad Meyer 2015-08-25 17:39:03 +00:00
parent 1cdb618269
commit 8c8e848710
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287138
2 changed files with 1 additions and 2 deletions

View File

@ -798,7 +798,7 @@ resize_ring(struct ioat_softc *ioat, int order)
new_idx = (ioat->tail + i) & (new_size - 1);
ring[new_idx] = ioat_alloc_ring_entry(ioat);
if (!ring[new_idx]) {
if (ring[new_idx] == NULL) {
while (i--) {
new_idx2 = (ioat->tail + i) &
(new_size - 1);

View File

@ -1,7 +1,6 @@
# $FreeBSD$
PROG= ioatcontrol
SRCS= ioatcontrol.c
MAN= ioatcontrol.8
CFLAGS+= -I${.CURDIR:H:H:H}/sys/dev/ioat
WARNS?= 6