summaryrefslogtreecommitdiff
path: root/hw/display/blizzard_template.h
AgeCommit message (Collapse)AuthorFilesLines
2014-01-31display: avoid multi-statement macroPaolo Bonzini1-15/+25
For blizzard, pl110 and tc6393xb this is harmless, but for pxa2xx Coverity noticed that it is used inside an "if" statement. Fix it because it's the file with the highest number of defects in the whole QEMU tree! Use "do...while (0)", or just remove the semicolon if there's a single statement in the macro. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2013-04-08hw: move private headers to hw/ subdirectories.Paolo Bonzini1-0/+136
Many headers are used only in a single directory. These can be kept in hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>