From: Himangi Saraogi Date: Wed, 12 Mar 2014 16:51:13 +0000 (+0530) Subject: staging:ozwpan:Fix sparse warning of cast to restricted __le16 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=accd4d7d3752ea9c59e5134d20743c578b763765;p=deliverable%2Flinux.git staging:ozwpan:Fix sparse warning of cast to restricted __le16 This patch fixes the following sparse warnings: drivers/staging/ozwpan/ozusbsvc1.c:391:36: warning: cast to restricted __le16 drivers/staging/ozwpan/ozusbsvc1.c:393:33: warning: cast to restricted __le16 Signed-off-by: Himangi Saraogi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ozwpan/ozprotocol.h b/drivers/staging/ozwpan/ozprotocol.h index 9a3a6b852f48..9bbb182f2776 100644 --- a/drivers/staging/ozwpan/ozprotocol.h +++ b/drivers/staging/ozwpan/ozprotocol.h @@ -219,8 +219,8 @@ struct oz_get_desc_rsp { u8 elt_seq_num; u8 type; u8 req_id; - u16 offset; - u16 total_size; + __le16 offset; + __le16 total_size; u8 rcode; u8 data[1]; } PACKED;