diff options
author | 2013-04-10 01:35:55 +0000 | |
---|---|---|
committer | 2013-04-10 01:35:55 +0000 | |
commit | 7887b06b9bacd2a6586be0077b225df58d1ded90 (patch) | |
tree | 3f4b11dd41be846373d20f7c309361bf357daf8d /sys/dev/isa/it.c | |
parent | Add a magic number to the head of the signature block. Check for magic (diff) | |
download | wireguard-openbsd-7887b06b9bacd2a6586be0077b225df58d1ded90.tar.xz wireguard-openbsd-7887b06b9bacd2a6586be0077b225df58d1ded90.zip |
Fix various glitches in queue macro usage.
ok millert@
Diffstat (limited to 'sys/dev/isa/it.c')
-rw-r--r-- | sys/dev/isa/it.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/it.c b/sys/dev/isa/it.c index ac30f772d0c..90a1801496c 100644 --- a/sys/dev/isa/it.c +++ b/sys/dev/isa/it.c @@ -1,4 +1,4 @@ -/* $OpenBSD: it.c,v 1.43 2013/03/21 18:20:00 brynet Exp $ */ +/* $OpenBSD: it.c,v 1.44 2013/04/10 01:35:55 guenther Exp $ */ /* * Copyright (c) 2007-2008 Oleg Safiullin <form@pdp-11.org.ru> @@ -124,7 +124,7 @@ int it_fan_ext_regs[] = { IT_EC_FAN_TAC4_MSB, IT_EC_FAN_TAC5_MSB }; -LIST_HEAD(, it_softc) it_softc_list = LIST_HEAD_INITIALIZER(&it_softc_list); +LIST_HEAD(, it_softc) it_softc_list = LIST_HEAD_INITIALIZER(it_softc_list); int |