mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Remove C99 initializer, since dominant style is to use non-C99 initializers.
Requested by: jhb
This commit is contained in:
parent
8176ad3626
commit
20e26ae67a
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue