mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-07 01:30:26 +01:00
intel: Drop gen prefix in gen_has_get_tiling()
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10241>
This commit is contained in:
parent
fcbb9338f2
commit
52c3f3df47
1 changed files with 2 additions and 2 deletions
|
|
@ -1377,7 +1377,7 @@ intel_get_aperture_size(int fd, uint64_t *size)
|
|||
}
|
||||
|
||||
static bool
|
||||
gen_has_get_tiling(int fd)
|
||||
has_get_tiling(int fd)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
|
@ -1476,7 +1476,7 @@ intel_get_device_info_from_fd(int fd, struct intel_device_info *devinfo)
|
|||
}
|
||||
|
||||
intel_get_aperture_size(fd, &devinfo->aperture_bytes);
|
||||
devinfo->has_tiling_uapi = gen_has_get_tiling(fd);
|
||||
devinfo->has_tiling_uapi = has_get_tiling(fd);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue