of_net: Fix residues after of_get_nvmem_mac_address removal
authorPetr Štetiar <ynezz@true.cz>
Wed, 17 Apr 2019 20:09:12 +0000 (22:09 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 19 Apr 2019 18:58:30 +0000 (11:58 -0700)
commit36ad7022536e0c65f8baeeaa5efde11dec44808a
tree67881839c45bbeb5d1b983b658170d8b72713e02
parent9188d5ca454fd665145904267e726e9e8d122f5c
of_net: Fix residues after of_get_nvmem_mac_address removal

I've discovered following discrepancy in the bindings/net/ethernet.txt
documentation, where it states following:

 - nvmem-cells: phandle, reference to an nvmem node for the MAC address;
 - nvmem-cell-names: string, should be "mac-address" if nvmem is to be..

which is actually misleading and confusing. There are only two ethernet
drivers in the tree, cadence/macb and davinci which supports this
properties.

This nvmem-cell* properties were introduced in commit 9217e566bdee
("of_net: Implement of_get_nvmem_mac_address helper"), but
commit afa64a72b862 ("of: net: kill of_get_nvmem_mac_address()")
forget to properly clean up this parts.

So this patch fixes the documentation by moving the nvmem-cell*
properties at the appropriate places.  While at it, I've removed unused
include as well.

Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Fixes: afa64a72b862 ("of: net: kill of_get_nvmem_mac_address()")
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/devicetree/bindings/net/davinci_emac.txt
Documentation/devicetree/bindings/net/ethernet.txt
Documentation/devicetree/bindings/net/macb.txt
drivers/of/of_net.c