diff options
author | Douglas Thompson <dougthompson@xmission.com> | 2007-07-19 04:49:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:53 -0400 |
commit | d56933e018b14fc7cad322f413eecc6cb6edf12e (patch) | |
tree | c1fabd51181d5bc1e3773c14235d37d841b7e364 /drivers/edac | |
parent | 2da1c119fd999cb834b4fe0c1a5a8c36195df1cb (diff) |
drivers/edac: add RDDR2 memory types
Add Registered RDDR2 memory types for displaying DDR2 memories
Signed-off-by: Douglas Thompson <dougthompson@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/edac_mc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/edac/edac_mc.h b/drivers/edac/edac_mc.h index fec12f722123..fdc811d89679 100644 --- a/drivers/edac/edac_mc.h +++ b/drivers/edac/edac_mc.h | |||
@@ -126,6 +126,7 @@ enum mem_type { | |||
126 | MEM_RMBS, /* Rambus DRAM */ | 126 | MEM_RMBS, /* Rambus DRAM */ |
127 | MEM_DDR2, /* DDR2 RAM */ | 127 | MEM_DDR2, /* DDR2 RAM */ |
128 | MEM_FB_DDR2, /* fully buffered DDR2 */ | 128 | MEM_FB_DDR2, /* fully buffered DDR2 */ |
129 | MEM_RDDR2, /* Registered DDR2 RAM */ | ||
129 | }; | 130 | }; |
130 | 131 | ||
131 | #define MEM_FLAG_EMPTY BIT(MEM_EMPTY) | 132 | #define MEM_FLAG_EMPTY BIT(MEM_EMPTY) |
@@ -141,6 +142,7 @@ enum mem_type { | |||
141 | #define MEM_FLAG_RMBS BIT(MEM_RMBS) | 142 | #define MEM_FLAG_RMBS BIT(MEM_RMBS) |
142 | #define MEM_FLAG_DDR2 BIT(MEM_DDR2) | 143 | #define MEM_FLAG_DDR2 BIT(MEM_DDR2) |
143 | #define MEM_FLAG_FB_DDR2 BIT(MEM_FB_DDR2) | 144 | #define MEM_FLAG_FB_DDR2 BIT(MEM_FB_DDR2) |
145 | #define MEM_FLAG_RDDR2 BIT(MEM_RDDR2) | ||
144 | 146 | ||
145 | /* chipset Error Detection and Correction capabilities and mode */ | 147 | /* chipset Error Detection and Correction capabilities and mode */ |
146 | enum edac_type { | 148 | enum edac_type { |