The patch titled
ssb: add 'ssb_pcihost_set_power_state' function
has been removed from the -mm tree. Its filename was
ssb-add-ssb_pcihost_set_power_state-function.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: ssb: add 'ssb_pcihost_set_power_state' function
From: Miguel Boton <[EMAIL PROTECTED]>
Add 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 Boton <[EMAIL PROTECTED]>
Acked-by: Michael Buesch <[EMAIL PROTECTED]>
Cc: "John W. Linville" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/ssb/ssb.h | 7 +++++++
1 file changed, 7 insertions(+)
diff -puN include/linux/ssb/ssb.h~ssb-add-ssb_pcihost_set_power_state-function
include/linux/ssb/ssb.h
--- a/include/linux/ssb/ssb.h~ssb-add-ssb_pcihost_set_power_state-function
+++ a/include/linux/ssb/ssb.h
@@ -349,6 +349,13 @@ static inline void ssb_pcihost_unregiste
{
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 */
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
acpi-remove-duplicated-warning-message.patch
git-alsa.patch
memstick-initial-commit-for-sony-memorystick-support-fix.patch
git-net.patch
git-x86.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html