* [PATCH linux-next-20080704] Fix missing exports for net/phy/mdio-bitbang.c
@ 2008-07-07 14:51 Takashi Iwai
2008-07-11 5:22 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2008-07-07 14:51 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Stephen Rothwell, Laurent Pinchart, linux-next, LKML
{alloc,free}_mdio_bitbang() are not exported while they are used in
mdio-ofgpio driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
diff --git a/drivers/net/phy/mdio-bitbang.c b/drivers/net/phy/mdio-bitbang.c
index 2747b1f..c01b780 100644
--- a/drivers/net/phy/mdio-bitbang.c
+++ b/drivers/net/phy/mdio-bitbang.c
@@ -177,6 +177,7 @@ struct mii_bus *alloc_mdio_bitbang(struct mdiobb_ctrl *ctrl)
return bus;
}
+EXPORT_SYMBOL(alloc_mdio_bitbang);
void free_mdio_bitbang(struct mii_bus *bus)
{
@@ -185,5 +186,6 @@ void free_mdio_bitbang(struct mii_bus *bus)
module_put(ctrl->ops->owner);
kfree(bus);
}
+EXPORT_SYMBOL(free_mdio_bitbang);
MODULE_LICENSE("GPL");
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH linux-next-20080704] Fix missing exports for net/phy/mdio-bitbang.c
2008-07-07 14:51 [PATCH linux-next-20080704] Fix missing exports for net/phy/mdio-bitbang.c Takashi Iwai
@ 2008-07-11 5:22 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2008-07-11 5:22 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Stephen Rothwell, Laurent Pinchart, linux-next, LKML
Takashi Iwai wrote:
> {alloc,free}_mdio_bitbang() are not exported while they are used in
> mdio-ofgpio driver.
>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
>
> ---
> diff --git a/drivers/net/phy/mdio-bitbang.c b/drivers/net/phy/mdio-bitbang.c
> index 2747b1f..c01b780 100644
> --- a/drivers/net/phy/mdio-bitbang.c
> +++ b/drivers/net/phy/mdio-bitbang.c
> @@ -177,6 +177,7 @@ struct mii_bus *alloc_mdio_bitbang(struct mdiobb_ctrl *ctrl)
>
> return bus;
> }
> +EXPORT_SYMBOL(alloc_mdio_bitbang);
>
> void free_mdio_bitbang(struct mii_bus *bus)
> {
> @@ -185,5 +186,6 @@ void free_mdio_bitbang(struct mii_bus *bus)
> module_put(ctrl->ops->owner);
> kfree(bus);
> }
> +EXPORT_SYMBOL(free_mdio_bitbang);
>
> MODULE_LICENSE("GPL");
applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-11 5:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-07 14:51 [PATCH linux-next-20080704] Fix missing exports for net/phy/mdio-bitbang.c Takashi Iwai
2008-07-11 5:22 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).