diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-03-24 12:18:31 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 16:33:29 +0100 |
commit | 57c2d60e1e3db506cdcecbf60f939593125db7f8 (patch) | |
tree | f91c0b9b1682772fd5150919fd8a57479700f2dc /drivers/char/rio/host.h | |
parent | [PATCH] rio driver rework continued #5 (diff) | |
download | linux-57c2d60e1e3db506cdcecbf60f939593125db7f8.tar.xz linux-57c2d60e1e3db506cdcecbf60f939593125db7f8.zip |
[PATCH] Yet more rio cleaning (1 of 2)
- Remove more unused headers
- Remove various typedefs
- Correct type of PaddrP (physical addresses should be ulong)
- Kill use of bcopy
- More printk cleanups
- Kill true/false
- Clean up direct access to pci BARs
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio/host.h')
-rw-r--r-- | drivers/char/rio/host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rio/host.h b/drivers/char/rio/host.h index 79a55301f06b..3ec73d1a279a 100644 --- a/drivers/char/rio/host.h +++ b/drivers/char/rio/host.h @@ -56,7 +56,7 @@ struct Host { unsigned char Slot; /* Slot */ caddr_t Caddr; /* KV address of DPRAM */ struct DpRam *CardP; /* KV address of DPRAM, with overlay */ - paddr_t PaddrP; /* Phys. address of DPRAM */ + unsigned long PaddrP; /* Phys. address of DPRAM */ char Name[MAX_NAME_LEN]; /* The name of the host */ unsigned int UniqueNum; /* host unique number */ spinlock_t HostLock; /* Lock structure for MPX */ |