Browse Source

ath79: fix unaligned access panic in ag71xx_mdio_probe

Without "syscon" being present in an ag71xx ethernet DT node's
compatible property, a panic occurs at boot during probe citing
"Unhandled kernel unaligned access".

With this modification, the panic no longer occurs and instead the probe
simply fails, allowing the boot process to continue.

Signed-off-by: Matt Merhar <[email protected]>
Matt Merhar 7 years ago
parent
commit
9c26def64a

+ 2 - 2
target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c

@@ -183,8 +183,8 @@ static int ag71xx_mdio_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	am->mii_regmap = syscon_regmap_lookup_by_phandle(np, "regmap");
-	if (!am->mii_regmap)
-		return -ENOENT;
+	if (IS_ERR(am->mii_regmap))
+		return PTR_ERR(am->mii_regmap);
 
 	mii_bus = devm_mdiobus_alloc(amdev);
 	if (!mii_bus)