diff options
| author | Ian Romanick <idr@us.ibm.com> | 2007-06-29 21:00:50 -0700 | 
|---|---|---|
| committer | Ian Romanick <idr@us.ibm.com> | 2007-06-29 21:00:50 -0700 | 
| commit | e206c4c59da0e81ed65796d543c311fc7e30b19a (patch) | |
| tree | 37a76347fe2c3a4c7e5513c3a2259c33a089574d /linux-core | |
| parent | 37733786582d04f072178949cc9e31225abf5577 (diff) | |
Convert some PCI-e GART related variable to generic types.
A few of the PCI-e GART related fields in struct xgi_info were
hardcoded to u32.  None of them need to be.  Convert them to either
unsigned int or bool.
Diffstat (limited to 'linux-core')
| -rw-r--r-- | linux-core/xgi_drv.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/linux-core/xgi_drv.h b/linux-core/xgi_drv.h index 8431eb16..3cb6dc7f 100644 --- a/linux-core/xgi_drv.h +++ b/linux-core/xgi_drv.h @@ -131,10 +131,10 @@ struct xgi_info {  	/* look up table parameters */  	U32 *lut_base; -	U32 lutPageSize; -	U32 lutPageOrder; -	U32 isLUTInLFB; -	U32 sdfbPageSize; +	unsigned int lutPageSize; +	unsigned int lutPageOrder; +	bool isLUTInLFB; +	unsigned int sdfbPageSize;  	U32 pcie_config;  	U32 pcie_status; | 
