net: dsa: qca8k: fix NULL pointer dereference for of_device_get_match_data
authorChristian Marangi <ansuelsmth@gmail.com>
Sun, 4 Sep 2022 21:53:19 +0000 (23:53 +0200)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 6 Sep 2022 09:18:15 +0000 (11:18 +0200)
of_device_get_match_data is called on priv->dev before priv->dev is
actually set. Move of_device_get_match_data after priv->dev is correctly
set to fix this kernel panic.

Fixes: 3bb0844e7bcd ("net: dsa: qca8k: cache match data to speed up access")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Link: https://lore.kernel.org/r/20220904215319.13070-1-ansuelsmth@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/dsa/qca/qca8k-8xxx.c

index 1d3e7782a71f2255d756b9b866875f0331977d1d..c181346388a41e36ef0e8a3c168463fcdac66e4a 100644 (file)
@@ -1889,9 +1889,9 @@ qca8k_sw_probe(struct mdio_device *mdiodev)
        if (!priv)
                return -ENOMEM;
 
-       priv->info = of_device_get_match_data(priv->dev);
        priv->bus = mdiodev->bus;
        priv->dev = &mdiodev->dev;
+       priv->info = of_device_get_match_data(priv->dev);
 
        priv->reset_gpio = devm_gpiod_get_optional(priv->dev, "reset",
                                                   GPIOD_ASIS);