usb/net: rndis: inline the cpu_to_le32() macro
authorLinus Walleij <linus.walleij@linaro.org>
Fri, 11 May 2012 22:15:39 +0000 (22:15 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sat, 12 May 2012 19:00:45 +0000 (15:00 -0400)
commit7390e8b0dee778b0a964337558990a91094e679a
treeaf1fc449dcfa152e55e6b8544ff3102ab4f44891
parent647c0c70e8a44e359d1d90d9d067d0b6b611076a
usb/net: rndis: inline the cpu_to_le32() macro

The header file <linux/usb/rndis_host.h> used a number of #defines
that included the cpu_to_le32() macro to assure the result will be
in LE endianness. Inlining this into the code instead of using it
in the code definitions yields consolidation opportunities later
on as you will see in the following patches. The individual
drivers also used local defines - all are switched over to the
pattern of doing the conversion at the call sites instead.

Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/rndis_host.c
drivers/net/wireless/rndis_wlan.c
include/linux/usb/rndis_host.h