of_mdio: kill useless variable in of_mdiobus_register()
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Sun, 28 Feb 2016 18:56:34 +0000 (21:56 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 Mar 2016 22:41:22 +0000 (17:41 -0500)
commit2fca6d288d7cac2debf170da021780cd8265c645
treef4e4a7990689e8a3b6e44bc8f6e2f42c61f3fcb7
parent87f761ecfbba35fe0f4dc117d11f0105f47cb120
of_mdio: kill useless variable in of_mdiobus_register()

of_mdiobus_register()  declares the 'paddr' variable to hold the result of
the of_get_property()  but only uses it once after that while the function
can be called directly from the *if* statement. Remove that variable and
switch to calling of_find_property() instead since  we don't care about
the "reg" property's value anyway...

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/of/of_mdio.c