Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed7e63a51d46e835422d89c687b8a3e419a4212a
Commit:     ed7e63a51d46e835422d89c687b8a3e419a4212a
Parent:     7a883eaf62f4b943ebec738ce3b0796c67ef5d32
Author:     Domen Puncer <[EMAIL PROTECTED]>
AuthorDate: Fri Aug 3 16:07:58 2007 +0800
Committer:  Li Yang <[EMAIL PROTECTED]>
CommitDate: Fri Aug 3 16:07:58 2007 +0800

    ucc_geth: fix section mismatch
    
    This fix section mismatch:
    reference to .exit.text:uec_mdio_exit (between 'ucc_geth_init' and 
'uec_mdio_init')
    
    void __exit uec_mdio_exit(void) is called from
    - static int __init ucc_geth_init(void)
    - static void __exit ucc_geth_exit(void)
    
    First one would make error path more than just an error.
    
    Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>
    Signed-off-by: Li Yang <[EMAIL PROTECTED]>
---
 drivers/net/ucc_geth_mii.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ucc_geth_mii.c b/drivers/net/ucc_geth_mii.c
index 5f8c2d3..6c257b8 100644
--- a/drivers/net/ucc_geth_mii.c
+++ b/drivers/net/ucc_geth_mii.c
@@ -272,7 +272,8 @@ int __init uec_mdio_init(void)
        return of_register_platform_driver(&uec_mdio_driver);
 }
 
-void __exit uec_mdio_exit(void)
+/* called from __init ucc_geth_init, therefore can not be __exit */
+void uec_mdio_exit(void)
 {
        of_unregister_platform_driver(&uec_mdio_driver);
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to