From: David E. Box Date: Wed, 17 Mar 2021 02:44:54 +0000 (-0700) Subject: platform/x86: intel_pmt_class: Initial resource to 0 X-Git-Tag: v5.13-rc1~176^2~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=501bb68a66cfc0bc2a2458483400cb49daca974f;p=thirdparty%2Fkernel%2Flinux.git platform/x86: intel_pmt_class: Initial resource to 0 Initialize the struct resource in intel_pmt_dev_register to zero to avoid a fault should the char *name field be non-zero. Signed-off-by: David E. Box Link: https://lore.kernel.org/r/20210317024455.3071477-1-david.e.box@linux.intel.com Signed-off-by: Hans de Goede --- diff --git a/drivers/platform/x86/intel_pmt_class.c b/drivers/platform/x86/intel_pmt_class.c index 228e21f1ce5cf..c86ff15b1ed52 100644 --- a/drivers/platform/x86/intel_pmt_class.c +++ b/drivers/platform/x86/intel_pmt_class.c @@ -219,7 +219,7 @@ static int intel_pmt_dev_register(struct intel_pmt_entry *entry, struct intel_pmt_namespace *ns, struct device *parent) { - struct resource res; + struct resource res = {0}; struct device *dev; int ret;