No need for that now. Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- arch/arm/plat-omap/include/plat/mailbox.h | 3 --- arch/arm/plat-omap/mailbox.c | 6 ++---- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/arch/arm/plat-omap/include/plat/mailbox.h b/arch/arm/plat-omap/include/plat/mailbox.h index cbde52a..e01be54 100644 --- a/arch/arm/plat-omap/include/plat/mailbox.h +++ b/arch/arm/plat-omap/include/plat/mailbox.h @@ -78,9 +78,6 @@ void omap_mbox_init_seq(struct omap_mbox *); struct omap_mbox *omap_mbox_get(const char *); void omap_mbox_put(struct omap_mbox *); -int omap_mbox_register(struct device *parent, struct omap_mbox *); -int omap_mbox_unregister(struct omap_mbox *); - static inline void omap_mbox_save_ctx(struct omap_mbox *mbox) { if (!mbox->ops->save_ctx) { diff --git a/arch/arm/plat-omap/mailbox.c b/arch/arm/plat-omap/mailbox.c index c7d28fa..88d67c4 100644 --- a/arch/arm/plat-omap/mailbox.c +++ b/arch/arm/plat-omap/mailbox.c @@ -347,7 +347,7 @@ void omap_mbox_put(struct omap_mbox *mbox) } EXPORT_SYMBOL(omap_mbox_put); -int omap_mbox_register(struct device *parent, struct omap_mbox *mbox) +static int omap_mbox_register(struct device *parent, struct omap_mbox *mbox) { int ret = 0; struct omap_mbox **tmp; @@ -372,9 +372,8 @@ int omap_mbox_register(struct device *parent, struct omap_mbox *mbox) err_find: return ret; } -EXPORT_SYMBOL(omap_mbox_register); -int omap_mbox_unregister(struct omap_mbox *mbox) +static int omap_mbox_unregister(struct omap_mbox *mbox) { struct omap_mbox **tmp; @@ -393,7 +392,6 @@ int omap_mbox_unregister(struct omap_mbox *mbox) return -EINVAL; } -EXPORT_SYMBOL(omap_mbox_unregister); static int __devinit omap_mbox_probe(struct platform_device *pdev) { -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html