Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=532031d7f426eb02f854d13184416cabcb01bdd5
Commit:     532031d7f426eb02f854d13184416cabcb01bdd5
Parent:     03ac7a8141e1613add92d42e389a35a126b1caf8
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Mon Feb 4 23:58:42 2008 -0800
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Tue Feb 5 14:35:47 2008 -0500

    b43: fix build with CONFIG_SSB_PCIHOST=n
    
    m68k allmodconfig gives
    
    drivers/net/wireless/b43/main.c:251: error: implicit declaration of 
function 'mmiowb'
    
    because CONFIG_B43=m, CONFIG_SSB_PCIHOST=n.
    
    Might be Kconfig bustage, but this works...
    
    Cc: Michael Buesch <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 include/linux/ssb/ssb.h |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h
index e18f5c2..9d5da8b 100644
--- a/include/linux/ssb/ssb.h
+++ b/include/linux/ssb/ssb.h
@@ -373,6 +373,15 @@ void ssb_pcihost_set_power_state(struct ssb_device *sdev, 
pci_power_t state)
        if (sdev->bus->bustype == SSB_BUSTYPE_PCI)
                pci_set_power_state(sdev->bus->host_pci, state);
 }
+#else
+static inline void ssb_pcihost_unregister(struct pci_driver *driver)
+{
+}
+
+static inline
+void ssb_pcihost_set_power_state(struct ssb_device *sdev, pci_power_t state)
+{
+}
 #endif /* CONFIG_SSB_PCIHOST */
 
 
-
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