diff options
author | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2007-04-23 15:25:59 +0000 |
---|---|---|
committer | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2007-04-23 15:25:59 +0000 |
commit | 9490383262ac5309eaa4ead50962530abd4e0e5f (patch) | |
tree | c1e3d455d511763d5c77fc9c6be13857539d617e /sys | |
parent | d72d1ca3592cf0b419db1967df48bd0abce8d16d (diff) |
iqg -> irq
spotted by miod
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/dev/sysbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/macppc/dev/sysbutton.c b/sys/arch/macppc/dev/sysbutton.c index a8845a84c5d..81c74a525f7 100644 --- a/sys/arch/macppc/dev/sysbutton.c +++ b/sys/arch/macppc/dev/sysbutton.c @@ -68,7 +68,7 @@ sysbutton_attach(struct device *parent, struct device *self, void *aux) OF_getprop(sc->sc_node, "interrupts", intr, sizeof(intr)); sc->sc_intr = intr[0]; - printf(": irg %d\n", sc->sc_intr); + printf(": irq %d\n", sc->sc_intr); mac_intr_establish(parent, sc->sc_intr, IST_LEVEL, IPL_NONE, sysbutton_intr, sc, sc->sc_dev.dv_xname); |