diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-25 22:41:20 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-25 22:41:20 +0000 |
commit | cd259ccdaec7c6702aa71196a0dad8968c34e9bf (patch) | |
tree | 4f79348d1201a9b59d1157a75142187a11158608 /include/asm-mips/sgi/sgihpc.h | |
parent | fbf7f8d08f48f03db03963cb15eceef6e6ae88bd (diff) |
Cleanup a large number of random junk, nothing of importance.
Diffstat (limited to 'include/asm-mips/sgi/sgihpc.h')
-rw-r--r-- | include/asm-mips/sgi/sgihpc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-mips/sgi/sgihpc.h b/include/asm-mips/sgi/sgihpc.h index 93e447882..69dcbda58 100644 --- a/include/asm-mips/sgi/sgihpc.h +++ b/include/asm-mips/sgi/sgihpc.h @@ -1,4 +1,4 @@ -/* $Id: sgihpc.h,v 1.1 1999/10/21 00:23:05 ralf Exp $ +/* $Id: sgihpc.h,v 1.2 1999/12/06 23:13:21 ralf Exp $ * * sgihpc.h: Various HPC I/O controller defines. The HPC is basically * the approximate functional equivalent of the Sun SYSIO @@ -18,8 +18,8 @@ extern int sgi_boardid; /* Board revision. */ /* An HPC dma descriptor. */ struct hpc_dma_desc { - unsigned long pbuf; /* physical address of data buffer */ - unsigned long cntinfo; /* counter and info bits */ + unsigned int pbuf; /* physical address of data buffer */ + unsigned int cntinfo; /* counter and info bits */ #define HPCDMA_EOX 0x80000000 /* last desc in chain for tx */ #define HPCDMA_EOR 0x80000000 /* last desc in chain for rx */ #define HPCDMA_EOXP 0x40000000 /* end of packet for tx */ @@ -31,10 +31,10 @@ struct hpc_dma_desc { #define HPCDMA_OWN 0x00004000 /* Denotes ring buffer ownership on rx */ #define HPCDMA_BCNT 0x00003fff /* size in bytes of this dma buffer */ - unsigned long pnext; /* paddr of next hpc_dma_desc if any */ + unsigned int pnext; /* paddr of next hpc_dma_desc if any */ }; -typedef volatile unsigned long hpcreg; +typedef volatile unsigned int hpcreg; /* HPC1 stuff. */ |