From: Felipe Balbi Date: Fri, 13 May 2011 21:26:18 +0000 (+0300) Subject: net: wl12xx: sdio: id_tables should be __devinitconst X-Git-Tag: v3.12-rc1~4755^2~12^2~42^2~234^2~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33dd74c7844852afba46f5e19911bcf55a1f04a1;p=kernel%2Fkernel-generic.git net: wl12xx: sdio: id_tables should be __devinitconst That's only needed during init anyway, let's free some space after we're done probing. Signed-off-by: Felipe Balbi Signed-off-by: Luciano Coelho --- diff --git a/drivers/net/wireless/wl12xx/sdio.c b/drivers/net/wireless/wl12xx/sdio.c index 536e506..d6dd49a 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) }, {} };