diff options
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/edac_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c index f3690a697cf9..55d14d008dd6 100644 --- a/drivers/edac/edac_device.c +++ b/drivers/edac/edac_device.c | |||
@@ -155,6 +155,10 @@ struct edac_device_ctl_info *edac_device_alloc_ctl_info( | |||
155 | dev_ctl->instances = dev_inst; | 155 | dev_ctl->instances = dev_inst; |
156 | dev_ctl->pvt_info = pvt; | 156 | dev_ctl->pvt_info = pvt; |
157 | 157 | ||
158 | /* Default logging of CEs and UEs */ | ||
159 | dev_ctl->log_ce = 1; | ||
160 | dev_ctl->log_ue = 1; | ||
161 | |||
158 | /* Name of this edac device */ | 162 | /* Name of this edac device */ |
159 | snprintf(dev_ctl->name,sizeof(dev_ctl->name),"%s",edac_device_name); | 163 | snprintf(dev_ctl->name,sizeof(dev_ctl->name),"%s",edac_device_name); |
160 | 164 | ||