mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
tests/kms_setmode: Fix compilation warnings.
kms_setmode.c:384:30: warning: declaration of ‘drm_fd’ shadows a global declaration [-Wshadow] kms_setmode.c:45:12: note: shadowed declaration is here static int drm_fd; kms_setmode.c:391:38: warning: passing argument 8 of ‘drmModeSetCrtc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] ids, crtc->connector_count, &crtc->mode); Signed-off-by: Marius Vlad <marius.c.vlad@intel.com> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
This commit is contained in:
parent
b33a78b9b1
commit
afa38a4d45
@ -381,23 +381,23 @@ static uint32_t *get_connector_ids(struct crtc_config *crtc)
|
||||
return ids;
|
||||
}
|
||||
|
||||
static int test_stealing(int drm_fd, const struct crtc_config *crtc, uint32_t *ids)
|
||||
static int test_stealing(int fd, struct crtc_config *crtc, uint32_t *ids)
|
||||
{
|
||||
int i, ret = 0;
|
||||
|
||||
if (!crtc->connector_count)
|
||||
return drmModeSetCrtc(drm_fd, crtc->crtc_id,
|
||||
return drmModeSetCrtc(fd, crtc->crtc_id,
|
||||
crtc->fb_info.fb_id, 0, 0,
|
||||
ids, crtc->connector_count, &crtc->mode);
|
||||
|
||||
for (i = 0; i < crtc->connector_count; ++i) {
|
||||
ret = drmModeSetCrtc(drm_fd, crtc->crtc_id,
|
||||
ret = drmModeSetCrtc(fd, crtc->crtc_id,
|
||||
crtc->fb_info.fb_id, 0, 0,
|
||||
&ids[i], 1, &crtc->mode);
|
||||
|
||||
igt_assert_eq(ret, 0);
|
||||
|
||||
ret = drmModeSetCrtc(drm_fd, crtc->crtc_id,
|
||||
ret = drmModeSetCrtc(fd, crtc->crtc_id,
|
||||
crtc->fb_info.fb_id, 0, 0,
|
||||
ids, crtc->connector_count, &crtc->mode);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user