GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / of_mdio.h
blob53b94e025c7c7ae7b167ecd1cdf836fe51c09897
1 /*
2 * OF helpers for the MDIO (Ethernet PHY) API
4 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
6 * This file is released under the GPLv2
7 */
9 #ifndef __LINUX_OF_MDIO_H
10 #define __LINUX_OF_MDIO_H
12 #include <linux/phy.h>
13 #include <linux/of.h>
15 extern int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np);
16 extern struct phy_device *of_phy_find_device(struct device_node *phy_np);
17 extern struct phy_device *of_phy_connect(struct net_device *dev,
18 struct device_node *phy_np,
19 void (*hndlr)(struct net_device *),
20 u32 flags, phy_interface_t iface);
21 extern struct phy_device *of_phy_connect_fixed_link(struct net_device *dev,
22 void (*hndlr)(struct net_device *),
23 phy_interface_t iface);
25 #endif /* __LINUX_OF_MDIO_H */