From: Xiaofei Tan Date: Tue, 26 Nov 2019 13:17:34 +0000 (+0100) Subject: rasdaemon: fix sub module name of HHA and DDRC for hip08 X-Git-Tag: v0.6.6~15 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ba48722b1997cfecbeb8caff9db3a4ebe6c1ccd2;p=users%2Fmchehab%2Frasdaemon.git rasdaemon: fix sub module name of HHA and DDRC for hip08 Fix sub module name of HHA and DDRC for hip08, and add const to the pointer parameter 'name' of step_vendor_data_tab(). CC: Xiaofei Tan , , , Date: Tue, 26 Nov 2019 20:12:29 +0800 Signed-off-by: Xiaofei Tan Signed-off-by: Mauro Carvalho Chehab --- diff --git a/non-standard-hisi_hip08.c b/non-standard-hisi_hip08.c index 6fff21a..421e03c 100644 --- a/non-standard-hisi_hip08.c +++ b/non-standard-hisi_hip08.c @@ -347,21 +347,21 @@ static const char *hllc_submodule_name[] = { }; static const char *hha_submodule_name[] = { - "TA_HHA0", - "TA_HHA1", "TB_HHA0", - "TB_HHA1" + "TB_HHA1", + "TA_HHA0", + "TA_HHA1" }; static const char *ddrc_submodule_name[] = { - "TA_DDRC0", - "TA_DDRC1", - "TA_DDRC2", - "TA_DDRC3", "TB_DDRC0", "TB_DDRC1", "TB_DDRC2", "TB_DDRC3", + "TA_DDRC0", + "TA_DDRC1", + "TA_DDRC2", + "TA_DDRC3", }; static const struct hisi_module_info hisi_oem_type2_module[] = { @@ -526,7 +526,8 @@ static void record_vendor_data(struct ras_ns_dec_tab *dec_tab, } } -static int step_vendor_data_tab(struct ras_ns_dec_tab *dec_tab, char *name) +static int step_vendor_data_tab(struct ras_ns_dec_tab *dec_tab, + const char *name) { int rc;