summaryrefslogtreecommitdiff
path: root/drivers/hwtracing/coresight/coresight-replicator.c
diff options
context:
space:
mode:
authorJames Clark <james.clark@arm.com>2023-11-23 15:04:56 +0300
committerSuzuki K Poulose <suzuki.poulose@arm.com>2024-02-12 13:18:41 +0300
commit8a519235c3c37663e54e37a89d05a86c0a2c90c8 (patch)
tree0e6b5a21feea7d1c7a85d4206f9ff006edd91293 /drivers/hwtracing/coresight/coresight-replicator.c
parent841c35169323cd833294798e58b9bf63fa4fa1de (diff)
downloadlinux-8a519235c3c37663e54e37a89d05a86c0a2c90c8.tar.xz
coresight: Fix uninitialized struct warnings
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
Diffstat (limited to 'drivers/hwtracing/coresight/coresight-replicator.c')
-rw-r--r--drivers/hwtracing/coresight/coresight-replicator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwtracing/coresight/coresight-replicator.c b/drivers/hwtracing/coresight/coresight-replicator.c
index 91d93060dda5..73452d9dc13b 100644
--- a/drivers/hwtracing/coresight/coresight-replicator.c
+++ b/drivers/hwtracing/coresight/coresight-replicator.c
@@ -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 */
{}
};