diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-09-05 17:41:08 -0300 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-09-21 15:12:58 +0200 |
commit | e916cbf80328d46b288f6c82a12cb3b8fc4fbd4a (patch) | |
tree | 3ad651a817dad3faf1ed4d930779247b085c20e7 /cpus.c | |
parent | 6cdf8854203e51a222c9ce94a8c8c568da834cf6 (diff) |
Drop cpu_list_id macro
Since the only user of the extended cpu_list_id() format
was the x86 ?model/?dump/?cpuid output, we can drop it
completely.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'cpus.c')
-rw-r--r-- | cpus.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1192,10 +1192,8 @@ void set_cpu_log_filename(const char *optarg) void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg) { /* XXX: implement xxx_cpu_list for targets that still miss it */ -#if defined(cpu_list_id) - cpu_list_id(f, cpu_fprintf, optarg); -#elif defined(cpu_list) - cpu_list(f, cpu_fprintf); /* deprecated */ +#if defined(cpu_list) + cpu_list(f, cpu_fprintf); #endif } |