summaryrefslogtreecommitdiffstats
path: root/drivers/net/fm/init.c
diff options
context:
space:
mode:
authorValentin Longchamp <valentin.longchamp@keymile.com>2013-10-18 11:47:21 +0200
committerYork Sun <yorksun@freescale.com>2013-10-24 09:35:59 -0700
commitf51d3b71d4d3eacfbbc6e2cf3fa197774df5f638 (patch)
tree7fba1071d269735aab40c8dcab7027f2811b09af /drivers/net/fm/init.c
parent7e157b0ade85282a76db27cbf0ab8a2370d4d7b6 (diff)
downloadtalos-obmc-uboot-f51d3b71d4d3eacfbbc6e2cf3fa197774df5f638.tar.gz
talos-obmc-uboot-f51d3b71d4d3eacfbbc6e2cf3fa197774df5f638.zip
net/fman: add a fm_enable_port function
This can be useful if one wants to disable an interface in u-boot because u-boot should not manage it but then later reenable it for FDT fixing or if the kernel uses this interface. Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com> [York Sun: fix conflict in fm_eth.h] Acked-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'drivers/net/fm/init.c')
-rw-r--r--drivers/net/fm/init.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/fm/init.c b/drivers/net/fm/init.c
index 2d13145f14..35edd7ad94 100644
--- a/drivers/net/fm/init.c
+++ b/drivers/net/fm/init.c
@@ -145,6 +145,14 @@ void fm_disable_port(enum fm_port port)
fman_disable_port(port);
}
+void fm_enable_port(enum fm_port port)
+{
+ int i = fm_port_to_index(port);
+
+ fm_info[i].enabled = 1;
+ fman_enable_port(port);
+}
+
void fm_info_set_mdio(enum fm_port port, struct mii_dev *bus)
{
int i = fm_port_to_index(port);
OpenPOWER on IntegriCloud