diff options
Diffstat (limited to 'drivers/edac/amd64_edac.h')
-rw-r--r-- | drivers/edac/amd64_edac.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/edac/amd64_edac.h b/drivers/edac/amd64_edac.h index e7aa760614ce..a159957e167b 100644 --- a/drivers/edac/amd64_edac.h +++ b/drivers/edac/amd64_edac.h | |||
@@ -577,6 +577,21 @@ extern const char *ii_msgs[4]; | |||
577 | extern const char *ext_msgs[32]; | 577 | extern const char *ext_msgs[32]; |
578 | extern const char *htlink_msgs[8]; | 578 | extern const char *htlink_msgs[8]; |
579 | 579 | ||
580 | #ifdef CONFIG_EDAC_DEBUG | ||
581 | #define NUM_DBG_ATTRS 9 | ||
582 | #else | ||
583 | #define NUM_DBG_ATTRS 0 | ||
584 | #endif | ||
585 | |||
586 | #ifdef CONFIG_EDAC_AMD64_ERROR_INJECTION | ||
587 | #define NUM_INJ_ATTRS 5 | ||
588 | #else | ||
589 | #define NUM_INJ_ATTRS 0 | ||
590 | #endif | ||
591 | |||
592 | extern struct mcidev_sysfs_attribute amd64_dbg_attrs[NUM_DBG_ATTRS], | ||
593 | amd64_inj_attrs[NUM_INJ_ATTRS]; | ||
594 | |||
580 | /* | 595 | /* |
581 | * Each of the PCI Device IDs types have their own set of hardware accessor | 596 | * Each of the PCI Device IDs types have their own set of hardware accessor |
582 | * functions and per device encoding/decoding logic. | 597 | * functions and per device encoding/decoding logic. |