staging: comedi: dt9812: Resolve different base types warnings.
authorShaun Laing <shaun@XResource.ca>
Tue, 30 Jul 2013 17:29:43 +0000 (11:29 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Aug 2013 00:46:40 +0000 (17:46 -0700)
Resolves warnings from the "sparse" checker of the form "warning: incorrect
type in assignment (different base types)".

Signed-off-by: Shaun Laing <shaun@xresource.ca>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/dt9812.c

index 7d78c78..b5e6f33 100644 (file)
@@ -187,8 +187,8 @@ enum {
 };
 
 struct dt9812_flash_data {
-       u16 numbytes;
-       u16 address;
+       __le16 numbytes;
+       __le16 address;
 };
 
 #define DT9812_MAX_NUM_MULTI_BYTE_RDS  \
@@ -229,7 +229,7 @@ struct dt9812_rmw_multi {
 };
 
 struct dt9812_usb_cmd {
-       u32 cmd;
+       __le32 cmd;
        union {
                struct dt9812_flash_data flash_data_info;
                struct dt9812_read_multi read_multi_info;