On 2/19/19 4:58 AM, Peter Maydell wrote:
> +static void arm_set_init_svtor(Object *obj, Visitor *v, const char *name,
> + void *opaque, Error **errp)
> +{
> + ARMCPU *cpu = ARM_CPU(obj);
> +
> + visit_type_uint32(v, name, &cpu->init_svtor, errp);
> +}Since there's no validation needed, can this use object_property_add_uint32_ptr? That said, this isn't wrong so, Reviewed-by: Richard Henderson <[email protected]> r~
