Commit 0ee8efa8 authored by Borislav Petkov's avatar Borislav Petkov Committed by Borislav Petkov

EDAC, MCE: Remove unused function parameter

Remove remains from previous functionality.
Signed-off-by: default avatarBorislav Petkov <borislav.petkov@amd.com>
parent c9f281fd
...@@ -24,7 +24,7 @@ static ssize_t amd64_nbea_store(struct mem_ctl_info *mci, const char *data, ...@@ -24,7 +24,7 @@ static ssize_t amd64_nbea_store(struct mem_ctl_info *mci, const char *data,
/* Process the Mapping request */ /* Process the Mapping request */
/* TODO: Add race prevention */ /* TODO: Add race prevention */
amd_decode_nb_mce(pvt->mc_node_id, &pvt->ctl_error_info, 1); amd_decode_nb_mce(pvt->mc_node_id, &pvt->ctl_error_info);
return count; return count;
} }
......
...@@ -291,13 +291,10 @@ static void amd_decode_ls_mce(u64 mc3_status) ...@@ -291,13 +291,10 @@ static void amd_decode_ls_mce(u64 mc3_status)
pr_emerg(HW_ERR "Corrupted LS MCE info?\n"); pr_emerg(HW_ERR "Corrupted LS MCE info?\n");
} }
void amd_decode_nb_mce(int node_id, struct err_regs *regs, int handle_errors) void amd_decode_nb_mce(int node_id, struct err_regs *regs)
{ {
u32 ec = ERROR_CODE(regs->nbsl); u32 ec = ERROR_CODE(regs->nbsl);
if (!handle_errors)
return;
/* /*
* GART TLB error reporting is disabled by default. Bail out early. * GART TLB error reporting is disabled by default. Bail out early.
*/ */
...@@ -402,7 +399,7 @@ static int amd_decode_mce(struct notifier_block *nb, unsigned long val, ...@@ -402,7 +399,7 @@ static int amd_decode_mce(struct notifier_block *nb, unsigned long val,
regs.nbeah = (u32)(m->addr >> 32); regs.nbeah = (u32)(m->addr >> 32);
node = amd_get_nb_id(m->extcpu); node = amd_get_nb_id(m->extcpu);
amd_decode_nb_mce(node, &regs, 1); amd_decode_nb_mce(node, &regs);
break; break;
case 5: case 5:
......
...@@ -64,6 +64,6 @@ struct err_regs { ...@@ -64,6 +64,6 @@ struct err_regs {
void amd_report_gart_errors(bool); void amd_report_gart_errors(bool);
void amd_register_ecc_decoder(void (*f)(int, struct err_regs *)); void amd_register_ecc_decoder(void (*f)(int, struct err_regs *));
void amd_unregister_ecc_decoder(void (*f)(int, struct err_regs *)); void amd_unregister_ecc_decoder(void (*f)(int, struct err_regs *));
void amd_decode_nb_mce(int, struct err_regs *, int); void amd_decode_nb_mce(int, struct err_regs *);
#endif /* _EDAC_MCE_AMD_H */ #endif /* _EDAC_MCE_AMD_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment