[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1396215079-7541-4-git-send-email-dvlasenk@redhat.com>
Date: Sun, 30 Mar 2014 23:31:19 +0200
From: Denys Vlasenko <dvlasenk@...hat.com>
To: Franky Lin <frankyl@...adcom.com>,
Arend van Spriel <arend@...adcom.com>,
Hante Meuleman <meuleman@...adcom.com>,
"John W. Linville" <linville@...driver.com>,
linux-kernel@...r.kernel.org, linux-wireless@...r.kernel.org
Cc: Denys Vlasenko <dvlasenk@...hat.com>
Subject: [PATCH 4/4] brcm80211: deinline brcmf_sdio_clrintr, save 8979 bytes
Automated script discovered that without forced inlining,
gcc-4.7 generates smaller code for this function.
There is no need to declare static functions inline anyway:
nowadays gcc detects single-callsite static functions
which benefit from inlining.
Signed-off-by: Denys Vlasenko <dvlasenk@...hat.com>
---
drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c b/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
index 47a6f39..55a6d0d 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c
@@ -2516,7 +2516,7 @@ static void brcmf_sdio_bus_stop(struct device *dev)
bus->tx_seq = bus->rx_seq = 0;
}
-static inline void brcmf_sdio_clrintr(struct brcmf_sdio *bus)
+static void brcmf_sdio_clrintr(struct brcmf_sdio *bus)
{
unsigned long flags;
--
1.8.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists