@@ -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);
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> --- tests/kms_setmode.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)