diff mbox

[3/3] compat: add empty implementation for usb_enable_autosuspend

Message ID 1287857641-7882-3-git-send-email-hauke@hauke-m.de (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Hauke Mehrtens Oct. 23, 2010, 6:14 p.m. UTC
None
diff mbox

Patch

diff --git a/include/linux/compat-2.6.34.h b/include/linux/compat-2.6.34.h
index 763abca..93fc4ef 100644
--- a/include/linux/compat-2.6.34.h
+++ b/include/linux/compat-2.6.34.h
@@ -6,6 +6,7 @@ 
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,34))
 
 #include <linux/netdevice.h>
+#include <linux/usb.h>
 
 #define netdev_mc_count(dev) ((dev)->mc_count)
 #define netdev_mc_empty(dev) (netdev_mc_count(dev) == 0)
@@ -236,6 +237,12 @@  static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
 	return 0;
 }
 
+/* USB autosuspend and autoresume */
+static inline int usb_enable_autosuspend(struct usb_device *udev)
+{ return 0; }
+static inline int usb_disable_autosuspend(struct usb_device *udev)
+{ return 0; }
+
 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,34)) */
 
 #endif /* LINUX_26_34_COMPAT_H */