diff options
author | 2007-06-01 01:00:45 +0000 | |
---|---|---|
committer | 2007-06-01 01:00:45 +0000 | |
commit | 27d3d16e797b4505cefa6898a81b50ef0620fab1 (patch) | |
tree | 18550e42c4599e47a5305b2917f1ba2bb0552870 | |
parent | apply the "skip ipsec if there are no flows" speedup diff to IPv6 too. (diff) | |
download | wireguard-openbsd-27d3d16e797b4505cefa6898a81b50ef0620fab1.tar.xz wireguard-openbsd-27d3d16e797b4505cefa6898a81b50ef0620fab1.zip |
never attempt to tweak a file just before commit
-rw-r--r-- | sys/arch/amd64/pci/pchb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/pci/pchb.c b/sys/arch/amd64/pci/pchb.c index 8fa544183bf..61ab5c9ee54 100644 --- a/sys/arch/amd64/pci/pchb.c +++ b/sys/arch/amd64/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.7 2007/05/31 23:35:46 tedu Exp $ */ +/* $OpenBSD: pchb.c,v 1.8 2007/06/01 01:00:45 tedu Exp $ */ /* $NetBSD: pchb.c,v 1.1 2003/04/26 18:39:50 fvdl Exp $ */ /* * Copyright (c) 2000 Michael Shalayeff @@ -202,7 +202,7 @@ pchbattach(struct device *parent, struct device *self, void *aux) /* see if we can read anything */ for (i = 1000; i-- && !(bus_space_read_1(sc->sc_bt,sc->sc_bh, - I82802_RNG_RNGST) & I82802_RNG_RNGST_DATAV)); + I82802_RNG_RNGST) & I82802_RNG_RNGST_DATAV);) DELAY(10); if (!(bus_space_read_1(sc->sc_bt, sc->sc_bh, |