diff options
author | Timur Tabi <timur@freescale.com> | 2012-01-12 18:23:04 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-12 18:23:04 -0500 |
commit | eb8a54a78e974e1af3e17fa38bb74d3747c5c1bd (patch) | |
tree | d3642783d7470c26815b7d3c14ea5d5949d7dcdb /include/linux/phy.h | |
parent | 1398eee08222a038fa5f017900f387e81f6e3ff4 (diff) |
phylib: introduce mdiobus_alloc_size()
Introduce function mdiobus_alloc_size() as an alternative to mdiobus_alloc().
Most callers of mdiobus_alloc() also allocate a private data structure, and
then manually point bus->priv to this object. mdiobus_alloc_size()
combines the two operations into one, which simplifies memory management.
The original mdiobus_alloc() now just calls mdiobus_alloc_size(0).
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r-- | include/linux/phy.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 79f337c47388..c599f7eca1e7 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
@@ -129,7 +129,12 @@ struct mii_bus { | |||
129 | }; | 129 | }; |
130 | #define to_mii_bus(d) container_of(d, struct mii_bus, dev) | 130 | #define to_mii_bus(d) container_of(d, struct mii_bus, dev) |
131 | 131 | ||
132 | struct mii_bus *mdiobus_alloc(void); | 132 | struct mii_bus *mdiobus_alloc_size(size_t); |
133 | static inline struct mii_bus *mdiobus_alloc(void) | ||
134 | { | ||
135 | return mdiobus_alloc_size(0); | ||
136 | } | ||
137 | |||
133 | int mdiobus_register(struct mii_bus *bus); | 138 | int mdiobus_register(struct mii_bus *bus); |
134 | void mdiobus_unregister(struct mii_bus *bus); | 139 | void mdiobus_unregister(struct mii_bus *bus); |
135 | void mdiobus_free(struct mii_bus *bus); | 140 | void mdiobus_free(struct mii_bus *bus); |