diff options
author | Borislav Petkov <bp@suse.de> | 2021-09-16 11:44:06 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-09-16 12:00:12 +0300 |
commit | 54607282fae6148641a08d81a6e0953b541249c7 (patch) | |
tree | 932f44760a0b45e9f74281514d47dc7fac91afb2 /drivers/edac | |
parent | 5297cfa6bdf93e3889f78f9b482e2a595a376083 (diff) | |
download | linux-54607282fae6148641a08d81a6e0953b541249c7.tar.xz |
EDAC/dmc520: Assign the proper type to dimm->edac_mode
dimm->edac_mode contains values of type enum edac_type - not the
corresponding capability flags. Fix that.
Fixes: 1088750d7839 ("EDAC: Add EDAC driver for DMC520")
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: <stable@vger.kernel.org>
Link: https://lkml.kernel.org/r/20210916085258.7544-1-bp@alien8.de
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/dmc520_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/dmc520_edac.c b/drivers/edac/dmc520_edac.c index fc1153ab1ebb..b8a7d9594afd 100644 --- a/drivers/edac/dmc520_edac.c +++ b/drivers/edac/dmc520_edac.c @@ -464,7 +464,7 @@ static void dmc520_init_csrow(struct mem_ctl_info *mci) dimm->grain = pvt->mem_width_in_bytes; dimm->dtype = dt; dimm->mtype = mt; - dimm->edac_mode = EDAC_FLAG_SECDED; + dimm->edac_mode = EDAC_SECDED; dimm->nr_pages = pages_per_rank / csi->nr_channels; } } |