From patchwork Sat Oct 23 18:14:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hauke Mehrtens X-Patchwork-Id: 279651 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9NIEJBe025156 for ; Sat, 23 Oct 2010 18:15:13 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758123Ab0JWSOU (ORCPT ); Sat, 23 Oct 2010 14:14:20 -0400 Received: from server19320154104.serverpool.info ([193.201.54.104]:55820 "EHLO hauke-m.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758002Ab0JWSOU (ORCPT ); Sat, 23 Oct 2010 14:14:20 -0400 Received: from localhost (localhost [127.0.0.1]) by hauke-m.de (Postfix) with ESMTP id 61B178704; Sat, 23 Oct 2010 20:14:19 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at hauke-m.de Received: from hauke-m.de ([127.0.0.1]) by localhost (hauke-m.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cgkesBH-9d2X; Sat, 23 Oct 2010 20:14:14 +0200 (CEST) Received: from localhost.localdomain (host-091-096-210-086.ewe-ip-backbone.de [91.96.210.86]) by hauke-m.de (Postfix) with ESMTPSA id 99B298707; Sat, 23 Oct 2010 20:14:14 +0200 (CEST) From: Hauke Mehrtens To: lrodriguez@atheros.com Cc: linux-wireless@vger.kernel.org, mcgrof@infradead.org, Hauke Mehrtens Subject: [PATCH 3/3] compat: add empty implementation for usb_enable_autosuspend Date: Sat, 23 Oct 2010 20:14:01 +0200 Message-Id: <1287857641-7882-3-git-send-email-hauke@hauke-m.de> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1287857641-7882-1-git-send-email-hauke@hauke-m.de> References: <1287857641-7882-1-git-send-email-hauke@hauke-m.de> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Sat, 23 Oct 2010 18:15:13 +0000 (UTC) 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 */