lkml.org 
[lkml]   [2015]   [May]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] staging: rtl8192e: Change cpu_to_le16 to le16_to_cpu
On Sat, May 09, 2015 at 10:27:16PM +0200, Arno Tiemersma wrote:
> Since the function auth_parse returns a u16, and
> struct rtllib_authentication.status is defined as an __le16, it seems
> that
>
> return cpu_to_le16(a->status);
>
> should be
>
> return le16_to_cpu(a->status);
>
> This change silences the following sparse warnings:
> drivers/staging/rtl8192e/rtllib_softmac.c:1817:16:
> warning: cast from restricted __le16
> drivers/staging/rtl8192e/rtllib_softmac.c:1817:16:
> warning: incorrect type in return expression (different base types)
> drivers/staging/rtl8192e/rtllib_softmac.c:1817:16:
> expected unsigned short
> drivers/staging/rtl8192e/rtllib_softmac.c:1817:16:
> got restricted __le16 [usertype] <noident>
>
> Signed-off-by: Arno Tiemersma <arno.tiemersma@gmail.com>

Your patch seems reasonable. The caller only cares about zero non-zero.

It feels like there are a bunch of endian bugs which Sparse misses in
this file. For example, ->frame_ctl is endian but it's never converted
and it's compared against cpu endian in the switch statements. (I
haven't double checked. Do your own homework before sending patches).

regards,
dan carpenter



\
 
 \ /
  Last update: 2015-05-10 00:21    [W:0.052 / U:0.064 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site