mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 13:58:20 +02:00
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.
This commit is contained in:
parent
3773378658
commit
e206c4c59d
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue