]> git.baikalelectronics.ru Git - kernel.git/commit
mdio_bus: Fix init if CONFIG_RESET_CONTROLLER=n
authorGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 19 Nov 2019 11:25:24 +0000 (12:25 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 20 Nov 2019 03:17:20 +0000 (19:17 -0800)
commitbc641fd716a5b9e965c7b89b4aed9409b4d721f6
treeaae54a7a72762e807c527ee128a500d666399e19
parentfa9344a6d708c2b4dbb10b6c0c9f7044f7171cbc
mdio_bus: Fix init if CONFIG_RESET_CONTROLLER=n

Commit 2af2bc80f8eb ("mdio_bus: Fix PTR_ERR applied after initialization
to constant") accidentally changed a check from -ENOTSUPP to -ENOSYS,
causing failures if reset controller support is not enabled.  E.g. on
r7s72100/rskrza1:

    sh-eth e8203000.ethernet: MDIO init failed: -524
    sh-eth: probe of e8203000.ethernet failed with error -524

Seen on r8a7740/armadillo, r7s72100/rskrza1, and r7s9210/rza2mevb.

Fixes: 2af2bc80f8eb ("mdio_bus: Fix PTR_ERR applied after initialization to constant")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: YueHaibing <yuehaibing@huawei.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio_bus.c