OSDN Git Service

staging: dgnc: cls_uart_struct: adds marker and changes vars' types for sparse
authorLidza Louina <lidza.louina@gmail.com>
Mon, 26 Aug 2013 14:53:09 +0000 (10:53 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 26 Aug 2013 23:26:55 +0000 (16:26 -0700)
commit2ea550bdfad1442749e6a1353afda93c8bb7a9ac
tree17fe575c9e859658a76d054c2ce9c4fe6429218e
parentb1f56acaca2efefcdf4b3f5962a99b27700c6e0a
staging: dgnc: cls_uart_struct: adds marker and changes vars' types for sparse

This patch removes these sparse warnings found in the cls.c file:

warning: incorrect type in argument 1 (different address spaces)
  expected void const volatile [noderef] <asn:2>*addr
  got unsigned char volatile *<noident>
warning: incorrect type in argument 2 (different address spaces)
  expected void volatile [noderef] <asn:2>*addr
  got unsigned char volatile *<noident>

The variables passed to readb and writeb need to
be of type u8 with a __iomem marker. These warnings
were popping up everytime the readb and writeb
functions were called with a cls_uart_struct variable.

The change made to the driver.h file adds the marker
to the cls_uart_struct and the changes in cls.h
changes its variables' types.

Signed-off-by: Lidza Louina <lidza.louina@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_cls.h
drivers/staging/dgnc/dgnc_driver.h