Module Name: src Committed By: martin Date: Sun Jan 10 20:11:50 UTC 2010
Modified Files: src/sys/sys: device.h Log Message: forgot to commit this - prototype for device_register_post_config() To generate a diff of this commit: cvs rdiff -u -r1.131 -r1.132 src/sys/sys/device.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/device.h diff -u src/sys/sys/device.h:1.131 src/sys/sys/device.h:1.132 --- src/sys/sys/device.h:1.131 Fri Jan 8 20:07:14 2010 +++ src/sys/sys/device.h Sun Jan 10 20:11:50 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: device.h,v 1.131 2010/01/08 20:07:14 dyoung Exp $ */ +/* $NetBSD: device.h,v 1.132 2010/01/10 20:11:50 martin Exp $ */ /* * Copyright (c) 1996, 2000 Christopher G. Demetriou @@ -488,6 +488,9 @@ #ifdef __HAVE_DEVICE_REGISTER void device_register(device_t, void *); #endif +#ifdef __HAVE_DEVICE_REGISTER_POSTCONFIG +void device_register_post_config(device_t, void *); +#endif devclass_t device_class(device_t); cfdata_t device_cfdata(device_t);