[IPX]: Correct return type of ipx_map_frame_type().

Casting BE16 to int and back may or may not work. Correct, to be sure.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
Alexey Dobriyan
2006-11-24 02:56:20 +01:00
committed by Adrian Bunk
parent c0235754cd
commit a06ee75aa0
+2 -2
View File
@@ -944,9 +944,9 @@ out:
return rc;
}
static int ipx_map_frame_type(unsigned char type)
static __be16 ipx_map_frame_type(unsigned char type)
{
int rc = 0;
__be16 rc = 0;
switch (type) {
case IPX_FRAME_ETHERII: rc = htons(ETH_P_IPX); break;