mirror of https://gitee.com/openkylin/linux.git
Staging: comedi: addi_common.h: properly mark this variable as __iomem
It's not an unsigned long, it's a __iomem pointer, so mark it as such. Cc: Ian Abbott <abbotti@mev.co.uk> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
643a5420f1
commit
6dd2281464
|
@ -351,7 +351,7 @@ struct addi_private {
|
||||||
int i_IobaseAmcc; /* base+size for AMCC chip */
|
int i_IobaseAmcc; /* base+size for AMCC chip */
|
||||||
int i_IobaseAddon; /* addon base address */
|
int i_IobaseAddon; /* addon base address */
|
||||||
int i_IobaseReserved;
|
int i_IobaseReserved;
|
||||||
unsigned long dw_AiBase;
|
void __iomem *dw_AiBase;
|
||||||
struct pcilst_struct *amcc; /* ptr too AMCC data */
|
struct pcilst_struct *amcc; /* ptr too AMCC data */
|
||||||
unsigned char allocated; /* we have blocked card */
|
unsigned char allocated; /* we have blocked card */
|
||||||
unsigned char b_ValidDriver; /* driver is ok */
|
unsigned char b_ValidDriver; /* driver is ok */
|
||||||
|
|
Loading…
Reference in New Issue