Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=961d57c883198831503c7be5c088a26101dfb16c
Commit:     961d57c883198831503c7be5c088a26101dfb16c
Parent:     aa6c7ae21d079f25420e436092e5461001ec29d7
Author:     Miguel Botón <[EMAIL PROTECTED]>
AuthorDate: Tue Jan 1 01:16:46 2008 +0100
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:09:18 2008 -0800

    ssb: add 'ssb_pcihost_set_power_state' function
    
    This patch adds the 'ssb_pcihost_set_power_state' function.
    
    This function allows us to set the power state of a PCI device
    (for example b44 ethernet device).
    
    Signed-off-by: Miguel Botón <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 include/linux/ssb/ssb.h |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h
index cacbae5..1ab4688 100644
--- a/include/linux/ssb/ssb.h
+++ b/include/linux/ssb/ssb.h
@@ -365,6 +365,13 @@ static inline void ssb_pcihost_unregister(struct 
pci_driver *driver)
 {
        pci_unregister_driver(driver);
 }
+
+static inline
+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);
+}
 #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