Home
last modified time | relevance | path

Searched refs:model_pieces (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/
H A Dcpu-target.c268 gchar **model_pieces; in parse_cpu_option() local
271 model_pieces = g_strsplit(cpu_option, ",", 2); in parse_cpu_option()
272 if (!model_pieces[0]) { in parse_cpu_option()
277 oc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]); in parse_cpu_option()
279 error_report("unable to find CPU model '%s'", model_pieces[0]); in parse_cpu_option()
280 g_strfreev(model_pieces); in parse_cpu_option()
286 cc->parse_features(cpu_type, model_pieces[1], &error_fatal); in parse_cpu_option()
287 g_strfreev(model_pieces); in parse_cpu_option()