~ubuntu-branches/ubuntu/lucid/linux-rt/lucid

« back to all changes in this revision

Viewing changes to include/linux/of_mdio.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2009-08-05 23:00:52 UTC
  • Revision ID: james.westby@ubuntu.com-20090805230052-7xedvqcyk9dnnxb2
Tags: 2.6.31-1.1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * OF helpers for the MDIO (Ethernet PHY) API
 
3
 *
 
4
 * Copyright (c) 2009 Secret Lab Technologies, Ltd.
 
5
 *
 
6
 * This file is released under the GPLv2
 
7
 */
 
8
 
 
9
#ifndef __LINUX_OF_MDIO_H
 
10
#define __LINUX_OF_MDIO_H
 
11
 
 
12
#include <linux/phy.h>
 
13
#include <linux/of.h>
 
14
 
 
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
 
 
22
#endif /* __LINUX_OF_MDIO_H */