From 3fcd9325ec61ead859015f90f524cda56ef9d347 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Sat, 29 Jan 2005 22:04:30 +0000 Subject: [PATCH] Correct a minr whitespace inconsistency introduced in revision 1.159: add a tab between #define and DF_REBID instead of a space. --- sys/kern/subr_bus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 182f63767d7..58d4a67e947 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -124,7 +124,7 @@ struct device { #define DF_QUIET 16 /* don't print verbose attach message */ #define DF_DONENOMATCH 32 /* don't execute DEVICE_NOMATCH again */ #define DF_EXTERNALSOFTC 64 /* softc not allocated by us */ -#define DF_REBID 128 /* Can rebid after attach */ +#define DF_REBID 128 /* Can rebid after attach */ u_char order; /**< order from device_add_child_ordered() */ u_char pad; void *ivars; /**< instance variables */