tests/modetest: silence compiler warning about uninitialised variables

The compiler is unaware of that we have at least one crts/connector/plane
thus it complains that some of our variables will be used uninitialised.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
main
Emil Velikov 2013-08-29 21:31:51 +01:00 committed by Rob Clark
parent 0100473de6
commit 4a8da02e52
1 changed files with 3 additions and 3 deletions

View File

@ -781,7 +781,7 @@ static struct crtc *pipe_find_crtc(struct device *dev, struct pipe_arg *pipe)
static int pipe_find_crtc_and_mode(struct device *dev, struct pipe_arg *pipe)
{
drmModeModeInfo *mode;
drmModeModeInfo *mode = NULL;
int i;
pipe->mode = NULL;
@ -838,8 +838,8 @@ struct property_arg {
static void set_property(struct device *dev, struct property_arg *p)
{
drmModeObjectProperties *props;
drmModePropertyRes **props_info;
drmModeObjectProperties *props = NULL;
drmModePropertyRes **props_info = NULL;
const char *obj_type;
int ret;
int i;