mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
[PATCH] edac: use C99 initializers (sparse warnings)
drivers/edac/e752x_edac.c:1042:7: warning: obsolete struct initializer, use C99 syntax Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
fe85a998ca
commit
0d38b049fe
@ -1039,10 +1039,10 @@ MODULE_DEVICE_TABLE(pci, e752x_pci_tbl);
|
||||
|
||||
|
||||
static struct pci_driver e752x_driver = {
|
||||
name: BS_MOD_STR,
|
||||
probe: e752x_init_one,
|
||||
remove: __devexit_p(e752x_remove_one),
|
||||
id_table: e752x_pci_tbl,
|
||||
.name = BS_MOD_STR,
|
||||
.probe = e752x_init_one,
|
||||
.remove = __devexit_p(e752x_remove_one),
|
||||
.id_table = e752x_pci_tbl,
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user