summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/dev/cpu.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-08-07 19:47:34 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-08-07 19:47:34 +0000
commit1ac3d5adbe88b2207968b6234e96b6415e48def6 (patch)
tree7a6a6c18b98b59baf1a444f5c7ba57b5a20db507 /sys/arch/hppa/dev/cpu.c
parentc889de43fe24c5a3301bb93041d1eba8b0d06a5f (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.c4
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);
}