diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-06 18:20:08 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-06 18:20:08 +0000 |
commit | dd838b51078f756afaa734f2538934eeb5e37f9c (patch) | |
tree | 789e2f69556f57c26d8f5eb4c57a89129d1759ea /sys/arch/alpha/tc/tc_3000_300.c | |
parent | df76969fb647e534e79ce275cca3c4c643905d7c (diff) |
Get rid of TC_IPL_xxx values and tc_intrlevel_t, and use IPL_xxx and int.
No functional change.
Diffstat (limited to 'sys/arch/alpha/tc/tc_3000_300.c')
-rw-r--r-- | sys/arch/alpha/tc/tc_3000_300.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/tc/tc_3000_300.c b/sys/arch/alpha/tc/tc_3000_300.c index fe6940fa6f9..8260f51a230 100644 --- a/sys/arch/alpha/tc/tc_3000_300.c +++ b/sys/arch/alpha/tc/tc_3000_300.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tc_3000_300.c,v 1.12 2006/03/04 12:33:17 miod Exp $ */ +/* $OpenBSD: tc_3000_300.c,v 1.13 2007/11/06 18:20:05 miod Exp $ */ /* $NetBSD: tc_3000_300.c,v 1.26 2001/07/27 00:25:21 thorpej Exp $ */ /* @@ -117,7 +117,7 @@ void tc_3000_300_intr_establish(tcadev, cookie, level, func, arg) struct device *tcadev; void *cookie, *arg; - tc_intrlevel_t level; + int level; int (*func)(void *); { volatile u_int32_t *imskp; |