Lines Matching defs:status
7 /* Runtime firmware routines to report errata status for the current CPU. */
28 # error This image should not be printing errata status
38 static __unused void print_status(int status, char *cpu_str, uint16_t cve, uint32_t id)
40 if (status == ERRATA_MISSING) {
46 } else if (status == ERRATA_APPLIES) {
65 * New errata status message printer
84 uint64_t status = entry->check_func(rev_var);
90 * would have applied had it been compiled in, print its status
93 if (status == ERRATA_APPLIES && entry->chosen == 0) {
94 status = ERRATA_MISSING;
97 print_status(status, cpu_ops->cpu_str, entry->cve, entry->id);
142 * Acquire lock. Determine whether status needs reporting, and then mark
143 * report status to true.
155 * Function to print errata status for the calling CPU (and others of the same
189 * Old errata status message printer
192 void __unused errata_print_msg(unsigned int status, const char *cpu, const char *id)
194 /* Errata status strings */
204 assert(status < ARRAY_SIZE(errata_status_str));
208 msg = errata_status_str[status];
210 switch (status) {