1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-26 07:55:01 +00:00

Remove C99 initializer, since dominant style is to use non-C99 initializers.

Requested by:	jhb
This commit is contained in:
Gleb Smirnoff 2010-03-03 18:49:15 +00:00
parent 8176ad3626
commit 20e26ae67a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=204650

View File

@ -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;