The MEDIA_IOC_G_TOPOLOGY implementation did not zero the reservedX fields.
Fix this.
Found with v4l2-compliance.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
                uentity++;
        }
        topo->num_entities = i;
+       topo->reserved1 = 0;
 
        /* Get interfaces and number of interfaces */
        i = 0;
                uintf++;
        }
        topo->num_interfaces = i;
+       topo->reserved2 = 0;
 
        /* Get pads and number of pads */
        i = 0;
                upad++;
        }
        topo->num_pads = i;
+       topo->reserved3 = 0;
 
        /* Get links and number of links */
        i = 0;
                ulink++;
        }
        topo->num_links = i;
+       topo->reserved4 = 0;
 
        return ret;
 }