mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-12 15:44:01 +08:00
Staging: comedi: Remove ULONG_PTR typedef in addi-data
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
756e9d7ca6
commit
a3435c92d0
@ -2638,7 +2638,7 @@ static int i_ADDI_Attach(struct comedi_device * dev, struct comedi_devconfig * i
|
||||
devpriv->i_IobaseReserved = (int) io_addr[3];
|
||||
printk("\nioremap begin");
|
||||
devpriv->dw_AiBase =
|
||||
(ULONG_PTR) ioremap(io_addr[3],
|
||||
(unsigned long ) ioremap(io_addr[3],
|
||||
this_board->i_IorangeBase3);
|
||||
printk("\nioremap end");
|
||||
}
|
||||
|
@ -37,7 +37,6 @@
|
||||
#define SUCCESS 1
|
||||
|
||||
/* variable type definition */
|
||||
typedef unsigned long ULONG_PTR;
|
||||
|
||||
typedef const struct comedi_lrange *PCRANGE;
|
||||
|
||||
@ -356,7 +355,7 @@ typedef struct {
|
||||
int i_IobaseAmcc; // base+size for AMCC chip
|
||||
int i_IobaseAddon; //addon base address
|
||||
int i_IobaseReserved;
|
||||
ULONG_PTR dw_AiBase;
|
||||
unsigned long dw_AiBase;
|
||||
struct pcilst_struct *amcc; // ptr too AMCC data
|
||||
unsigned char allocated; // we have blocked card
|
||||
unsigned char b_ValidDriver; // driver is ok
|
||||
|
Loading…
Reference in New Issue
Block a user