coresight: Fix uninitialized struct warnings
authorJames Clark <james.clark@arm.com>
Thu, 23 Nov 2023 12:04:56 +0000 (12:04 +0000)
committerSuzuki K Poulose <suzuki.poulose@arm.com>
Mon, 12 Feb 2024 10:18:41 +0000 (10:18 +0000)
These warnings would be hit with the following W=1 build change so
initialize all structs properly.

Signed-off-by: James Clark <james.clark@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Link: https://lore.kernel.org/r/20231123120459.287578-2-james.clark@arm.com
12 files changed:
drivers/hwtracing/coresight/coresight-cti-core.c
drivers/hwtracing/coresight/coresight-etb10.c
drivers/hwtracing/coresight/coresight-etm3x-core.c
drivers/hwtracing/coresight/coresight-etm4x-core.c
drivers/hwtracing/coresight/coresight-funnel.c
drivers/hwtracing/coresight/coresight-replicator.c
drivers/hwtracing/coresight/coresight-stm.c
drivers/hwtracing/coresight/coresight-tmc-core.c
drivers/hwtracing/coresight/coresight-tpda.c
drivers/hwtracing/coresight/coresight-tpdm.c
drivers/hwtracing/coresight/coresight-tpiu.c
drivers/hwtracing/coresight/ultrasoc-smb.c

index 3999d0a..e805617 100644 (file)
@@ -974,7 +974,7 @@ static const struct amba_id cti_ids[] = {
        CS_AMBA_ID(0x000bb9aa), /* CTI - C-A73 */
        CS_AMBA_UCI_ID(0x000bb9da, uci_id_cti), /* CTI - C-A35 */
        CS_AMBA_UCI_ID(0x000bb9ed, uci_id_cti), /* Coresight CTI (SoC 600) */
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, cti_ids);
index fa80039..05e21cf 100644 (file)
@@ -837,7 +837,7 @@ static const struct amba_id etb_ids[] = {
                .id     = 0x000bb907,
                .mask   = 0x000fffff,
        },
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, etb_ids);
index 116a91d..8da1622 100644 (file)
@@ -1003,7 +1003,7 @@ static const struct amba_id etm_ids[] = {
        CS_AMBA_ID_DATA(0x000bb95f, "PTM 1.1"),
        /* PTM 1.1 Qualcomm */
        CS_AMBA_ID_DATA(0x000b006f, "PTM 1.1"),
-       { 0, 0},
+       { 0, 0, NULL},
 };
 
 MODULE_DEVICE_TABLE(amba, etm_ids);
index ce1995a..c5ea808 100644 (file)
@@ -2390,7 +2390,7 @@ static const struct of_device_id etm4_sysreg_match[] = {
 
 #ifdef CONFIG_ACPI
 static const struct acpi_device_id etm4x_acpi_ids[] = {
-       {"ARMHC500", 0}, /* ARM CoreSight ETM4x */
+       {"ARMHC500", 0, 0, 0}, /* ARM CoreSight ETM4x */
        {}
 };
 MODULE_DEVICE_TABLE(acpi, etm4x_acpi_ids);
index a5b1fc7..ef1a0ab 100644 (file)
@@ -350,7 +350,7 @@ MODULE_DEVICE_TABLE(of, static_funnel_match);
 
 #ifdef CONFIG_ACPI
 static const struct acpi_device_id static_funnel_ids[] = {
-       {"ARMHC9FE", 0},
+       {"ARMHC9FE", 0, 0, 0},
        {},
 };
 
@@ -391,7 +391,7 @@ static const struct amba_id dynamic_funnel_ids[] = {
                .id     = 0x000bb9eb,
                .mask   = 0x000fffff,
        },
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, dynamic_funnel_ids);
index 91d9306..73452d9 100644 (file)
@@ -363,7 +363,7 @@ MODULE_DEVICE_TABLE(of, static_replicator_match);
 
 #ifdef CONFIG_ACPI
 static const struct acpi_device_id static_replicator_acpi_ids[] = {
-       {"ARMHC985", 0}, /* ARM CoreSight Static Replicator */
+       {"ARMHC985", 0, 0, 0}, /* ARM CoreSight Static Replicator */
        {}
 };
 
index a1c27c9..891ee64 100644 (file)
@@ -950,7 +950,7 @@ static const struct dev_pm_ops stm_dev_pm_ops = {
 static const struct amba_id stm_ids[] = {
        CS_AMBA_ID_DATA(0x000bb962, "STM32"),
        CS_AMBA_ID_DATA(0x000bb963, "STM500"),
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, stm_ids);
index 7ec5365..39bae35 100644 (file)
@@ -594,7 +594,7 @@ static const struct amba_id tmc_ids[] = {
        CS_AMBA_ID(0x000bb9e9),
        /* Coresight SoC 600 TMC-ETF */
        CS_AMBA_ID(0x000bb9ea),
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, tmc_ids);
index 5f82737..4ac954f 100644 (file)
@@ -300,7 +300,7 @@ static struct amba_id tpda_ids[] = {
                .id     = 0x000f0f00,
                .mask   = 0x000fff00,
        },
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 static struct amba_driver tpda_driver = {
index 97654aa..bd13a54 100644 (file)
@@ -933,7 +933,7 @@ static struct amba_id tpdm_ids[] = {
                .id = 0x000f0e00,
                .mask = 0x000fff00,
        },
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 static struct amba_driver tpdm_driver = {
index 59eac93..7e69048 100644 (file)
@@ -218,7 +218,7 @@ static const struct amba_id tpiu_ids[] = {
                .id     = 0x000bb9e7,
                .mask   = 0x000fffff,
        },
-       { 0, 0},
+       { 0, 0, NULL },
 };
 
 MODULE_DEVICE_TABLE(amba, tpiu_ids);
index 10e8864..f0b6806 100644 (file)
@@ -586,7 +586,7 @@ static void smb_remove(struct platform_device *pdev)
 
 #ifdef CONFIG_ACPI
 static const struct acpi_device_id ultrasoc_smb_acpi_match[] = {
-       {"HISI03A1", 0},
+       {"HISI03A1", 0, 0, 0},
        {}
 };
 MODULE_DEVICE_TABLE(acpi, ultrasoc_smb_acpi_match);