summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2010-03-03 18:49:15 +0000
committerglebius <glebius@FreeBSD.org>2010-03-03 18:49:15 +0000
commit4d38d86e0ce6ea363a78a3745b1e487051b1fa6e (patch)
treee3610b498ab532ca054857be25bcc636cdce6b30 /share
parentcb38fdae7c004eec078edf577e1819ce9760aecb (diff)
downloadFreeBSD-src-4d38d86e0ce6ea363a78a3745b1e487051b1fa6e.zip
FreeBSD-src-4d38d86e0ce6ea363a78a3745b1e487051b1fa6e.tar.gz
Remove C99 initializer, since dominant style is to use non-C99 initializers.
Requested by: jhb
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/driver.96
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/driver.9 b/share/man/man9/driver.9
index dad6760..960c9ae 100644
--- a/share/man/man9/driver.9
+++ b/share/man/man9/driver.9
@@ -62,9 +62,9 @@ static device_method_t foo_methods[] = {
};
static driver_t foo_driver = {
- .name = "foo",
- .methods = foo_methods,
- .size = sizeof(struct foo_softc)
+ "foo",
+ foo_methods,
+ sizeof(struct foo_softc)
};
static devclass_t foo_devclass;
OpenPOWER on IntegriCloud