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.12-rc5~25^2~3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7547deff8a221e6bf1e563cf1b636844a8e5378a;p=linux-block.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 c8939fba4509..ee2b3bbeb83d 100644 --- a/drivers/platform/x86/intel_pmt_class.c +++ b/drivers/platform/x86/intel_pmt_class.c @@ -173,7 +173,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;