diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-11-28 12:06:30 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-19 08:31:30 +0100 |
commit | 28ecbaeecb139a214f019207402a35d7b58aec0f (patch) | |
tree | 6facaf7ff899eefbb94cfba88e84cad88ea0d0a3 /hw/omap_lcdc.c | |
parent | 2870dc3456c9c02debb63b0a99b3dcbbf74a1048 (diff) |
ui: move files to ui/ and include/ui/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/omap_lcdc.c')
-rw-r--r-- | hw/omap_lcdc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/omap_lcdc.c b/hw/omap_lcdc.c index d7ae3032b..936850a62 100644 --- a/hw/omap_lcdc.c +++ b/hw/omap_lcdc.c @@ -17,9 +17,10 @@ * with this program; if not, see <http://www.gnu.org/licenses/>. */ #include "hw.h" -#include "console.h" +#include "ui/console.h" #include "omap.h" #include "framebuffer.h" +#include "ui/pixel_ops.h" struct omap_lcd_panel_s { MemoryRegion *sysmem; @@ -66,8 +67,6 @@ static void omap_lcd_interrupts(struct omap_lcd_panel_s *s) qemu_irq_lower(s->irq); } -#include "pixel_ops.h" - #define draw_line_func drawfn #define DEPTH 8 |