Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm32/arm32 fix arguments to get_device.



details:   https://anonhg.NetBSD.org/src/rev/c05ae90e41b7
branches:  trunk
changeset: 487146:c05ae90e41b7
user:      matt <matt%NetBSD.org@localhost>
date:      Sat Jun 03 16:48:59 2000 +0000

description:
fix arguments to get_device.

diffstat:

 sys/arch/arm32/arm32/autoconf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 8184d867a77a -r c05ae90e41b7 sys/arch/arm32/arm32/autoconf.c
--- a/sys/arch/arm32/arm32/autoconf.c   Sat Jun 03 16:44:43 2000 +0000
+++ b/sys/arch/arm32/arm32/autoconf.c   Sat Jun 03 16:48:59 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: autoconf.c,v 1.34 2000/06/01 15:38:22 matt Exp $       */
+/*     $NetBSD: autoconf.c,v 1.35 2000/06/03 16:48:59 matt Exp $       */
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -135,12 +135,12 @@
        char *ptr;
             
        if (boot_file)
-               get_device(boot_file, &booted_device, &booted_partition);
+               get_device(boot_file);
        if (boot_args) {
                ptr = strstr(boot_args, "root=");
                if (ptr) {
                        ptr += 5;
-                       get_device(ptr, &booted_device, &booted_partition);
+                       get_device(ptr);
                }
        }
 }



Home | Main Index | Thread Index | Old Index