diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-08-07 19:47:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-08-07 19:47:34 +0000 |
commit | 1ac3d5adbe88b2207968b6234e96b6415e48def6 (patch) | |
tree | 7a6a6c18b98b59baf1a444f5c7ba57b5a20db507 /sys/arch/hppa/dev/cpu.c | |
parent | c889de43fe24c5a3301bb93041d1eba8b0d06a5f (diff) |
make all intr_establish take the same last arg for name
Diffstat (limited to 'sys/arch/hppa/dev/cpu.c')
-rw-r--r-- | sys/arch/hppa/dev/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/dev/cpu.c b/sys/arch/hppa/dev/cpu.c index 932ba6cac42..9ea23a6e156 100644 --- a/sys/arch/hppa/dev/cpu.c +++ b/sys/arch/hppa/dev/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.21 2003/03/29 00:52:45 mickey Exp $ */ +/* $OpenBSD: cpu.c,v 1.22 2003/08/07 19:47:33 mickey Exp $ */ /* * Copyright (c) 1998-2002 Michael Shalayeff @@ -190,7 +190,7 @@ cpuattach(parent, self, aux) /* sanity against lusers amongst config editors */ if (ca->ca_irq == 31) sc->sc_ih = cpu_intr_establish(IPL_CLOCK, ca->ca_irq, - cpu_hardclock, NULL /*frame*/, &sc->sc_dev); + cpu_hardclock, NULL /*frame*/, sc->sc_dev.dv_xname); else printf ("%s: bad irq %d\n", sc->sc_dev.dv_xname, ca->ca_irq); } |