* [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes
@ 2014-02-18 14:05 Denys Vlasenko
2014-02-18 14:15 ` Joe Perches
0 siblings, 1 reply; 4+ messages in thread
From: Denys Vlasenko @ 2014-02-18 14:05 UTC (permalink / raw)
To: Franky Lin, Arend van Spriel, Hante Meuleman, linux-kernel,
linux-wireless
Cc: Denys Vlasenko
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
---
drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c b/drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c
index 82bf3c5..b810ab5 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c
@@ -900,7 +900,7 @@ static bool brcmf_sdio_chip_cm3_exitdl(struct brcmf_sdio_dev *sdiodev,
return true;
}
-static inline void
+static void
brcmf_sdio_chip_cr4_enterdl(struct brcmf_sdio_dev *sdiodev,
struct brcmf_chip *ci)
{
--
1.8.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes
2014-02-18 14:05 [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes Denys Vlasenko
@ 2014-02-18 14:15 ` Joe Perches
2014-02-18 17:24 ` Arend van Spriel
0 siblings, 1 reply; 4+ messages in thread
From: Joe Perches @ 2014-02-18 14:15 UTC (permalink / raw)
To: Denys Vlasenko
Cc: Franky Lin, Arend van Spriel, Hante Meuleman, linux-kernel,
linux-wireless
On Tue, 2014-02-18 at 15:05 +0100, Denys Vlasenko wrote:
> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Hi Denys
Perhaps these patch subjects would be better without
the file path, but shortened to something like:
brcmfmac: sdio_chip: deinline function to reduce object size
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes
2014-02-18 14:15 ` Joe Perches
@ 2014-02-18 17:24 ` Arend van Spriel
2014-02-18 17:26 ` Arend van Spriel
0 siblings, 1 reply; 4+ messages in thread
From: Arend van Spriel @ 2014-02-18 17:24 UTC (permalink / raw)
To: Joe Perches, Denys Vlasenko
Cc: Franky Lin, Hante Meuleman, linux-kernel, linux-wireless
On 02/18/2014 03:15 PM, Joe Perches wrote:
> On Tue, 2014-02-18 at 15:05 +0100, Denys Vlasenko wrote:
>> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
>
> Hi Denys
>
> Perhaps these patch subjects would be better without
> the file path, but shortened to something like:
>
> brcmfmac: sdio_chip: deinline function to reduce object size
Indeed, only the driver name prefix is nice to have so
brcmfmac: deinline <func_name> to reduce object size
Given that you are updating sdio_chip.c makes me conclude that you did
not make these changes in the wireless-next repository. Can you please
resubmit them for wireless-next/master.
Regards,
Arend
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes
2014-02-18 17:24 ` Arend van Spriel
@ 2014-02-18 17:26 ` Arend van Spriel
0 siblings, 0 replies; 4+ messages in thread
From: Arend van Spriel @ 2014-02-18 17:26 UTC (permalink / raw)
To: Joe Perches, Denys Vlasenko
Cc: Franky Lin, Hante Meuleman, linux-kernel, linux-wireless
On 02/18/2014 06:24 PM, Arend van Spriel wrote:
> On 02/18/2014 03:15 PM, Joe Perches wrote:
>> On Tue, 2014-02-18 at 15:05 +0100, Denys Vlasenko wrote:
>>> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
>>
>> Hi Denys
>>
>> Perhaps these patch subjects would be better without
>> the file path, but shortened to something like:
>>
>> brcmfmac: sdio_chip: deinline function to reduce object size
>
> Indeed, only the driver name prefix is nice to have so
>
> brcmfmac: deinline <func_name> to reduce object size
>
> Given that you are updating sdio_chip.c makes me conclude that you did
> not make these changes in the wireless-next repository. Can you please
> resubmit them for wireless-next/master.
O, and the patch should be sent to John Linville as he is the wireless
maintainer.
> Regards,
> Arend
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-02-18 17:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-18 14:05 [PATCH] drivers/net/wireless/brcm80211/brcmfmac/sdio_chip.c: deinline brcmf_sdio_chip_cr4_enterdl, save 440 bytes Denys Vlasenko
2014-02-18 14:15 ` Joe Perches
2014-02-18 17:24 ` Arend van Spriel
2014-02-18 17:26 ` Arend van Spriel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).