From: "Robert P. J. Day" Signed-off-by: Robert P. J. Day Cc: Doug Thompson Signed-off-by: Andrew Morton --- drivers/edac/edac_device.c | 2 +- drivers/edac/edac_mc.c | 2 +- drivers/edac/edac_pci.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/edac/edac_device.c~edac-use-the-shorter-list_head-for-brevity drivers/edac/edac_device.c --- a/drivers/edac/edac_device.c~edac-use-the-shorter-list_head-for-brevity +++ a/drivers/edac/edac_device.c @@ -36,7 +36,7 @@ * is protected by the 'device_ctls_mutex' lock */ static DEFINE_MUTEX(device_ctls_mutex); -static struct list_head edac_device_list = LIST_HEAD_INIT(edac_device_list); +static LIST_HEAD(edac_device_list); #ifdef CONFIG_EDAC_DEBUG static void edac_device_dump_device(struct edac_device_ctl_info *edac_dev) diff -puN drivers/edac/edac_mc.c~edac-use-the-shorter-list_head-for-brevity drivers/edac/edac_mc.c --- a/drivers/edac/edac_mc.c~edac-use-the-shorter-list_head-for-brevity +++ a/drivers/edac/edac_mc.c @@ -36,7 +36,7 @@ /* lock to memory controller's control array */ static DEFINE_MUTEX(mem_ctls_mutex); -static struct list_head mc_devices = LIST_HEAD_INIT(mc_devices); +static LIST_HEAD(mc_devices); #ifdef CONFIG_EDAC_DEBUG diff -puN drivers/edac/edac_pci.c~edac-use-the-shorter-list_head-for-brevity drivers/edac/edac_pci.c --- a/drivers/edac/edac_pci.c~edac-use-the-shorter-list_head-for-brevity +++ a/drivers/edac/edac_pci.c @@ -29,7 +29,7 @@ #include "edac_module.h" static DEFINE_MUTEX(edac_pci_ctls_mutex); -static struct list_head edac_pci_list = LIST_HEAD_INIT(edac_pci_list); +static LIST_HEAD(edac_pci_list); /* * edac_pci_alloc_ctl_info _