From: Lidza Louina Date: Mon, 26 Aug 2013 15:08:02 +0000 (-0400) Subject: staging: dgnc: neo_uart_struct: adds marker and changes vars' types for sparse X-Git-Tag: v3.12-rc1~183^2~66 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2587771a61bdf89a45cf54ddbed5458deaaddf26;p=pandora-kernel.git staging: dgnc: neo_uart_struct: adds marker and changes vars' types for sparse This patch fixes these warnings found in the neo.c file: warning: incorrect type in argument 1 (different address spaces) expected void const volatile [noderef] *addr got unsigned char volatile * warning: incorrect type in argument 2 (different address spaces) expected void volatile [noderef] *addr got unsigned char volatile * 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 neo_uart_struct variable. The change made to the driver.h file adds the marker to the neo_uart_struct and the changes in neo.h changes the variables' types. Signed-off-by: Lidza Louina Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed