Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/kern/subr_autoconf.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/kern/subr_autoconf.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.235 retrieving revision 1.236 diff -u -p -r1.235 -r1.236 --- src/sys/kern/subr_autoconf.c 2015/04/13 16:46:33 1.235 +++ src/sys/kern/subr_autoconf.c 2015/11/08 21:03:00 1.236 @@ -1,4 +1,4 @@ -/* $NetBSD: subr_autoconf.c,v 1.235 2015/04/13 16:46:33 riastradh Exp $ */ +/* $NetBSD: subr_autoconf.c,v 1.236 2015/11/08 21:03:00 joerg Exp $ */ /* * Copyright (c) 1996, 2000 Christopher G. Demetriou @@ -77,7 +77,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.235 2015/04/13 16:46:33 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.236 2015/11/08 21:03:00 joerg Exp $"); #ifdef _KERNEL_OPT #include "opt_ddb.h" @@ -1435,6 +1435,10 @@ config_devalloc(const device_t parent, c "device-driver", dev->dv_cfdriver->cd_name); prop_dictionary_set_uint16(dev->dv_properties, "device-unit", dev->dv_unit); + if (parent != NULL) { + prop_dictionary_set_cstring(dev->dv_properties, + "device-parent", device_xname(parent)); + } if (dev->dv_cfdriver->cd_attrs != NULL) config_add_attrib_dict(dev);