soc: fsl: guts: machine variable might be unset
authorMichael Walle <michael@walle.cc>
Mon, 4 Apr 2022 09:56:03 +0000 (11:56 +0200)
committerShawn Guo <shawnguo@kernel.org>
Mon, 27 Jun 2022 06:51:28 +0000 (14:51 +0800)
If both the model and the compatible properties are missing, then
machine will not be set. Initialize it with NULL.

Fixes: 34c1c21e94ac ("soc: fsl: fix section mismatch build warnings")
Signed-off-by: Michael Walle <michael@walle.cc>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
drivers/soc/fsl/guts.c

index 5ed2fc1..be18d46 100644 (file)
@@ -140,7 +140,7 @@ static int fsl_guts_probe(struct platform_device *pdev)
        struct device_node *root, *np = pdev->dev.of_node;
        struct device *dev = &pdev->dev;
        const struct fsl_soc_die_attr *soc_die;
-       const char *machine;
+       const char *machine = NULL;
        u32 svr;
 
        /* Initialize guts */