From patchwork Fri May 13 21:26:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 784062 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4DLRL0O017779 for ; Fri, 13 May 2011 21:27:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757435Ab1EMV0x (ORCPT ); Fri, 13 May 2011 17:26:53 -0400 Received: from na3sys009aog112.obsmtp.com ([74.125.149.207]:51100 "EHLO na3sys009aog112.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753986Ab1EMV0r (ORCPT ); Fri, 13 May 2011 17:26:47 -0400 Received: from mail-fx0-f48.google.com ([209.85.161.48]) (using TLSv1) by na3sys009aob112.postini.com ([74.125.148.12]) with SMTP ID DSNKTc2iFEuVkAjBIy0u4pR5r+yACpjj45q3@postini.com; Fri, 13 May 2011 14:26:47 PDT Received: by mail-fx0-f48.google.com with SMTP id 7so3410270fxm.35 for ; Fri, 13 May 2011 14:26:44 -0700 (PDT) Received: by 10.223.106.76 with SMTP id w12mr2305171fao.104.1305322003917; Fri, 13 May 2011 14:26:43 -0700 (PDT) Received: from localhost (cs181221225.pp.htv.fi [82.181.221.225]) by mx.google.com with ESMTPS id r26sm968150fam.10.2011.05.13.14.26.41 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 May 2011 14:26:43 -0700 (PDT) From: Felipe Balbi To: Luciano Coelho Cc: linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Felipe Balbi Subject: [RFC/PATCH 01/13] net: wl12xx: sdio: id_tables should be __devinitconst Date: Sat, 14 May 2011 00:26:18 +0300 Message-Id: <1305321990-22041-2-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.4.1.343.ga91df In-Reply-To: <1305321990-22041-1-git-send-email-balbi@ti.com> References: <1305321990-22041-1-git-send-email-balbi@ti.com> Organization: Texas Instruments\n 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.6 (demeter2.kernel.org [140.211.167.43]); Fri, 13 May 2011 21:27:22 +0000 (UTC) That's only needed during init anyway, let's free some space after we're done probing. Signed-off-by: Felipe Balbi --- drivers/net/wireless/wl12xx/sdio.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/wl12xx/sdio.c b/drivers/net/wireless/wl12xx/sdio.c index b1c7d03..1268efe 100644 --- a/drivers/net/wireless/wl12xx/sdio.c +++ b/drivers/net/wireless/wl12xx/sdio.c @@ -45,7 +45,7 @@ #define SDIO_DEVICE_ID_TI_WL1271 0x4076 #endif -static const struct sdio_device_id wl1271_devices[] = { +static const struct sdio_device_id wl1271_devices[] __devinitconst = { { SDIO_DEVICE(SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271) }, {} };