Whitespace change to line up dev_sotfc definition.

This commit is contained in:
Warner Losh 2020-08-22 19:18:31 +00:00
parent b14f13459e
commit 46809e695f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=364491

View File

@ -402,15 +402,15 @@ STAILQ_HEAD(devq, dev_event_info);
static struct dev_softc
{
int inuse;
int nonblock;
int queued;
int async;
struct mtx mtx;
struct cv cv;
struct selinfo sel;
struct devq devq;
struct sigio *sigio;
int inuse;
int nonblock;
int queued;
int async;
struct mtx mtx;
struct cv cv;
struct selinfo sel;
struct devq devq;
struct sigio *sigio;
} devsoftc;
static void filt_devctl_detach(struct knote *kn);