Fix post-test typo that snuck in.

This commit is contained in:
Peter Grehan 2015-10-02 22:05:51 +00:00
parent ef0d8f6351
commit 056e398239
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288524

View File

@ -536,7 +536,7 @@ fwctl_handler(struct vmctx *ctx, int vcpu, int in, int port, int bytes,
return (0);
}
INOUT_PORT(fwctl_wreg, FWCTL_OUT, IOPORT_F_INOUT, fwctl_handler);
INOUT_PORT(fwctl_rreg, FWCTL_IN, IOPORT_F_OUT, fwctl_handler);
INOUT_PORT(fwctl_rreg, FWCTL_IN, IOPORT_F_IN, fwctl_handler);
void
fwctl_init(void)