mirror of https://gitee.com/openkylin/linux.git
staging: slicoss: fix different address space warnings
Remove incorrect __iomem annotation. This patch fix the following sparse warnings in slicoss driver: warning: incorrect type in assignment (different address spaces) Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
020f95cb51
commit
0699669b49
|
@ -380,7 +380,7 @@ struct slic_shmemory {
|
|||
dma_addr_t isr_phaddr;
|
||||
dma_addr_t lnkstatus_phaddr;
|
||||
dma_addr_t stats_phaddr;
|
||||
struct slic_shmem_data __iomem *shmem_data;
|
||||
struct slic_shmem_data *shmem_data;
|
||||
};
|
||||
|
||||
struct slic_upr {
|
||||
|
|
Loading…
Reference in New Issue