diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-01-21 11:43:42 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-01-21 11:43:42 +0000 |
commit | 379486f4ef9c3e54594c3c8225cfb7e4926139e4 (patch) | |
tree | 58494788c3ea68f1eaef316b6ed857470f8c7842 /sys | |
parent | 07e90ba1be9fb91daed3a8c5d5bcd342e3e76888 (diff) |
Remove unused variable, leftover from rev 1.36.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/macppc/macppc/ofw_machdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/macppc/macppc/ofw_machdep.c b/sys/arch/macppc/macppc/ofw_machdep.c index 1b8d8fa63c4..eba67f69c3d 100644 --- a/sys/arch/macppc/macppc/ofw_machdep.c +++ b/sys/arch/macppc/macppc/ofw_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ofw_machdep.c,v 1.36 2012/06/21 10:08:16 mpi Exp $ */ +/* $OpenBSD: ofw_machdep.c,v 1.37 2013/01/21 11:43:41 mpi Exp $ */ /* $NetBSD: ofw_machdep.c,v 1.1 1996/09/30 16:34:50 ws Exp $ */ /* @@ -382,14 +382,11 @@ of_display_console() int display_node; int err; u_int32_t memtag, iotag; - struct ppc_pci_chipset pa; struct { u_int32_t phys_hi, phys_mid, phys_lo; u_int32_t size_hi, size_lo; } addr [8]; - pa.pc_make_tag = &ofw_make_tag; - stdout_node = OF_instance_to_package(OF_stdout); len = OF_getprop(stdout_node, "name", name, 20); name[len] = 0; |