linux-edac.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] edac: synopsys: Fix the wrong value assignment for edac_mode
@ 2021-08-18  7:23 Shubhrajyoti Datta
  2021-08-18  7:23 ` [PATCH 2/2] edac: synopsys: Fix the issue in reporting of the error count Shubhrajyoti Datta
  2021-09-16  8:43 ` [PATCH 1/2] edac: synopsys: Fix the wrong value assignment for edac_mode Borislav Petkov
  0 siblings, 2 replies; 4+ messages in thread
From: Shubhrajyoti Datta @ 2021-08-18  7:23 UTC (permalink / raw)
  To: linux-edac
  Cc: bp, mchehab, michal.simek, git, Sai Krishna Potthuri, Shubhrajyoti Datta

From: Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>

This patch corrected the edac_mode value by using enum instead of bitmask.

Addresses-coverity: enumerated type mixed with another type.
Signed-off-by: Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>
Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
---
 drivers/edac/synopsys_edac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/edac/synopsys_edac.c b/drivers/edac/synopsys_edac.c
index 7e7146b22c16..7d08627e738b 100644
--- a/drivers/edac/synopsys_edac.c
+++ b/drivers/edac/synopsys_edac.c
@@ -782,7 +782,7 @@ static void init_csrows(struct mem_ctl_info *mci)
 
 		for (j = 0; j < csi->nr_channels; j++) {
 			dimm		= csi->channels[j]->dimm;
-			dimm->edac_mode	= EDAC_FLAG_SECDED;
+			dimm->edac_mode	= EDAC_SECDED;
 			dimm->mtype	= p_data->get_mtype(priv->baseaddr);
 			dimm->nr_pages	= (size >> PAGE_SHIFT) / csi->nr_channels;
 			dimm->grain	= SYNPS_EDAC_ERR_GRAIN;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-09-16  9:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-18  7:23 [PATCH 1/2] edac: synopsys: Fix the wrong value assignment for edac_mode Shubhrajyoti Datta
2021-08-18  7:23 ` [PATCH 2/2] edac: synopsys: Fix the issue in reporting of the error count Shubhrajyoti Datta
2021-09-16  9:47   ` Borislav Petkov
2021-09-16  8:43 ` [PATCH 1/2] edac: synopsys: Fix the wrong value assignment for edac_mode Borislav Petkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).