From: Hauke Mehrtens Date: Sat, 23 Oct 2010 18:14:01 +0000 (+0200) Subject: compat: add empty implementation for usb_enable_autosuspend X-Git-Tag: v2.6.37-rc1-1~4 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=a5556e6fe2349fbf913801e4ff486d6b8edf4699;p=~emulex%2Ffor-vlad%2Fold%2Fcompat.git compat: add empty implementation for usb_enable_autosuspend This is needed by drivers/bluetooth/btusb.c Signed-off-by: Hauke Mehrtens --- 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 +#include #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 */