qemu/hw/microblaze/fdt-generic-devices.c
<<
>>
Prefs
   1#include "qemu/osdep.h"
   2#include "qom/object.h"
   3#include "qemu-common.h"
   4
   5static const TypeInfo fdt_qom_aliases [] = {
   6    {   .name = "xlnx.microblaze",          .parent = "microblaze-cpu"      },
   7};
   8
   9static void fdt_generic_register_types(void)
  10{
  11    int i;
  12
  13    for (i = 0; i < ARRAY_SIZE(fdt_qom_aliases); ++i) {
  14        type_register_static(&fdt_qom_aliases[i]);
  15    }
  16}
  17
  18type_init(fdt_generic_register_types)
  19