Lines Matching refs:ctl_info
33 *ctl_info, char *data)
35 return sprintf(data, "%u\n", ctl_info->log_ue);
39 *ctl_info, const char *data,
43 ctl_info->log_ue = (simple_strtoul(data, NULL, 0) != 0);
50 *ctl_info, char *data)
52 return sprintf(data, "%u\n", ctl_info->log_ce);
56 *ctl_info, const char *data,
60 ctl_info->log_ce = (simple_strtoul(data, NULL, 0) != 0);
67 *ctl_info, char *data)
69 return sprintf(data, "%u\n", ctl_info->panic_on_ue);
73 *ctl_info, const char *data,
77 ctl_info->panic_on_ue = (simple_strtoul(data, NULL, 0) != 0);
84 *ctl_info, char *data)
86 return sprintf(data, "%u\n", ctl_info->poll_msec);
90 *ctl_info, const char *data,
101 edac_device_reset_delay_period(ctl_info, value);
116 /* Function to 'show' fields from the edac_dev 'ctl_info' structure */
128 /* Function to 'store' fields into the edac_dev 'ctl_info' structure */
141 /* edac_dev file operations for an 'ctl_info' */
154 /* Declare the various ctl_info attributes here and their respective ops */