Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7b5ee3a038c869e773092834abaa8174e0d77514
Commit:     7b5ee3a038c869e773092834abaa8174e0d77514
Parent:     4942de4a0e914f205d351a81873f4f63986bcc3c
Author:     Satyam Sharma <[EMAIL PROTECTED]>
AuthorDate: Mon Sep 3 01:41:34 2007 +0530
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Sep 25 22:55:43 2007 -0700

    [PATCH] net/wireless/sysfs.c: Shut up build warning
    
    net/wireless/sysfs.c:108: warning: ‘wiphy_uevent’ defined but not used
    
    when CONFIG_HOTPLUG=n is because the only usage site of this function
    is #ifdef'ed as such, so let's #ifdef the definition also.
    
    Signed-off-by: Satyam Sharma <[EMAIL PROTECTED]>
    Acked-by: Johannes Berg <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 net/wireless/sysfs.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/net/wireless/sysfs.c b/net/wireless/sysfs.c
index 88aaacd..2d5d225 100644
--- a/net/wireless/sysfs.c
+++ b/net/wireless/sysfs.c
@@ -52,12 +52,14 @@ static void wiphy_dev_release(struct device *dev)
        cfg80211_dev_free(rdev);
 }
 
+#ifdef CONFIG_HOTPLUG
 static int wiphy_uevent(struct device *dev, char **envp,
                        int num_envp, char *buf, int size)
 {
        /* TODO, we probably need stuff here */
        return 0;
 }
+#endif
 
 struct class ieee80211_class = {
        .name = "ieee80211",
-
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