diff options
author | dim <dim@FreeBSD.org> | 2012-11-05 19:16:27 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-11-05 19:16:27 +0000 |
commit | 373133f0add23957f517b98346a79d42d6ddbfe6 (patch) | |
tree | 94ae3a33b6da3a7eb7e7354e30b147e8e406b496 /sys/dev/xl/if_xl.c | |
parent | 78e7d864ca1b0c2d38ffd03eeb39a9e2ce7f302f (diff) | |
download | FreeBSD-src-373133f0add23957f517b98346a79d42d6ddbfe6.zip FreeBSD-src-373133f0add23957f517b98346a79d42d6ddbfe6.tar.gz |
Remove duplicate const specifiers in many drivers (I hope I got all of
them, please let me know if not). Most of these are of the form:
static const struct bzzt_type {
[...list of members...]
} const bzzt_devs[] = {
[...list of initializers...]
};
The second const is unnecessary, as arrays cannot be modified anyway,
and if the elements are const, the whole thing is const automatically
(e.g. it is placed in .rodata).
I have verified this does not change the binary output of a full kernel
build (except for build timestamps embedded in the object files).
Reviewed by: yongari, marius
MFC after: 1 week
Diffstat (limited to 'sys/dev/xl/if_xl.c')
-rw-r--r-- | sys/dev/xl/if_xl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/xl/if_xl.c b/sys/dev/xl/if_xl.c index 22591d0..7b2e23f 100644 --- a/sys/dev/xl/if_xl.c +++ b/sys/dev/xl/if_xl.c @@ -161,7 +161,7 @@ MODULE_DEPEND(xl, miibus, 1, 1, 1); /* * Various supported device vendors/types and their names. */ -static const struct xl_type const xl_devs[] = { +static const struct xl_type xl_devs[] = { { TC_VENDORID, TC_DEVICEID_BOOMERANG_10BT, "3Com 3c900-TPO Etherlink XL" }, { TC_VENDORID, TC_DEVICEID_BOOMERANG_10BT_COMBO, |