Commit ff6ac2a616c85d1215899ffda815e29b699cbd3a
Committed by
Linus Torvalds
1 parent
94ee1cf5a8
Exists in
master
and in
4 other branches
edac: use the shorter LIST_HEAD for brevity
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Acked-by: Doug Thompson <norsk5@yahoo.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 3 changed files with 3 additions and 3 deletions Side-by-side Diff
drivers/edac/edac_device.c
... | ... | @@ -36,7 +36,7 @@ |
36 | 36 | * is protected by the 'device_ctls_mutex' lock |
37 | 37 | */ |
38 | 38 | static DEFINE_MUTEX(device_ctls_mutex); |
39 | -static struct list_head edac_device_list = LIST_HEAD_INIT(edac_device_list); | |
39 | +static LIST_HEAD(edac_device_list); | |
40 | 40 | |
41 | 41 | #ifdef CONFIG_EDAC_DEBUG |
42 | 42 | static void edac_device_dump_device(struct edac_device_ctl_info *edac_dev) |
drivers/edac/edac_mc.c
drivers/edac/edac_pci.c