Lines Matching defs:info
165 struct x38_error_info *info)
177 pci_read_config_word(pdev, X38_ERRSTS, &info->errsts);
178 if (!(info->errsts & X38_ERRSTS_BITS))
181 info->eccerrlog[0] = lo_hi_readq(window + X38_C0ECCERRLOG);
183 info->eccerrlog[1] = lo_hi_readq(window + X38_C1ECCERRLOG);
185 pci_read_config_word(pdev, X38_ERRSTS, &info->errsts2);
190 * with no info and the second set of reads is valid and
191 * should be UE info.
193 if ((info->errsts ^ info->errsts2) & X38_ERRSTS_BITS) {
194 info->eccerrlog[0] = lo_hi_readq(window + X38_C0ECCERRLOG);
196 info->eccerrlog[1] =
204 struct x38_error_info *info)
209 if (!(info->errsts & X38_ERRSTS_BITS))
212 if ((info->errsts ^ info->errsts2) & X38_ERRSTS_BITS) {
216 info->errsts = info->errsts2;
220 log = info->eccerrlog[channel];
239 struct x38_error_info info;
241 x38_get_and_clear_error_info(mci, &info);
242 x38_process_error_info(mci, &info);