summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormglocker <mglocker@openbsd.org>2007-09-30 22:28:45 +0000
committermglocker <mglocker@openbsd.org>2007-09-30 22:28:45 +0000
commita259070988683ea027bd05830603dc95b2d42093 (patch)
tree64f87c7fcb1c85332f56a8d257d652774c22ebfc
parentShows the real size of a register in the hex define. (diff)
downloadwireguard-openbsd-a259070988683ea027bd05830603dc95b2d42093.tar.xz
wireguard-openbsd-a259070988683ea027bd05830603dc95b2d42093.zip
Spacing.
-rw-r--r--sys/dev/ic/bwi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/bwi.c b/sys/dev/ic/bwi.c
index b259ec51eaa..b30fbda34d9 100644
--- a/sys/dev/ic/bwi.c
+++ b/sys/dev/ic/bwi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bwi.c,v 1.53 2007/09/30 22:12:43 mglocker Exp $ */
+/* $OpenBSD: bwi.c,v 1.54 2007/09/30 22:28:45 mglocker Exp $ */
/*
* Copyright (c) 2007 The DragonFly Project. All rights reserved.
@@ -2769,14 +2769,14 @@ bwi_phy_set_bbp_atten(struct bwi_mac *mac, uint16_t bbp_atten)
if (phy->phy_version == 0) {
CSR_FILT_SETBITS_2(mac->mac_sc, BWI_BBP_ATTEN, ~mask,
- __SHIFTIN(bbp_atten, mask));
+ __SHIFTIN(bbp_atten, mask));
} else {
if (phy->phy_version > 1)
mask <<= 2;
else
mask <<= 3;
PHY_FILT_SETBITS(mac, BWI_PHYR_BBP_ATTEN, ~mask,
- __SHIFTIN(bbp_atten, mask));
+ __SHIFTIN(bbp_atten, mask));
}
}