diff options
author | 2009-08-13 10:03:35 +0000 | |
---|---|---|
committer | 2009-08-13 10:03:35 +0000 | |
commit | fbccd7b64c4c4e5c13fbb1ab20cb4ec982b7873d (patch) | |
tree | 6c436f5e5f949714263cb16daa0428a8b79f0ff3 /sys | |
parent | date: 2009/08/13 01:11:19; author: djm; state: Exp; lines: +10 -7 (diff) | |
download | wireguard-openbsd-fbccd7b64c4c4e5c13fbb1ab20cb4ec982b7873d.tar.xz wireguard-openbsd-fbccd7b64c4c4e5c13fbb1ab20cb4ec982b7873d.zip |
- set DV_IFNET, instead of DV_NULL
ok kettenis@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/socppc/dev/if_tsec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/socppc/dev/if_tsec.c b/sys/arch/socppc/dev/if_tsec.c index ca377948d2d..a38259d9950 100644 --- a/sys/arch/socppc/dev/if_tsec.c +++ b/sys/arch/socppc/dev/if_tsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tsec.c,v 1.23 2009/08/09 11:40:58 deraadt Exp $ */ +/* $OpenBSD: if_tsec.c,v 1.24 2009/08/13 10:03:35 jasper Exp $ */ /* * Copyright (c) 2008 Mark Kettenis @@ -280,7 +280,7 @@ struct cfattach tsec_ca = { }; struct cfdriver tsec_cd = { - NULL, "tsec", DV_DULL + NULL, "tsec", DV_IFNET }; uint32_t tsec_read(struct tsec_softc *, bus_addr_t); |