version 1.1.1.3, 2018/04/24 17:24:47
|
version 1.1.1.4, 2018/04/24 17:39:29
|
Line 80 static void omap_lcd_interrupts(struct o
|
Line 80 static void omap_lcd_interrupts(struct o
|
#include "omap_lcd_template.h" |
#include "omap_lcd_template.h" |
|
|
static draw_line_func draw_line_table2[33] = { |
static draw_line_func draw_line_table2[33] = { |
[0 ... 32] = 0, |
[0 ... 32] = NULL, |
[8] = draw_line2_8, |
[8] = draw_line2_8, |
[15] = draw_line2_15, |
[15] = draw_line2_15, |
[16] = draw_line2_16, |
[16] = draw_line2_16, |
[32] = draw_line2_32, |
[32] = draw_line2_32, |
}, draw_line_table4[33] = { |
}, draw_line_table4[33] = { |
[0 ... 32] = 0, |
[0 ... 32] = NULL, |
[8] = draw_line4_8, |
[8] = draw_line4_8, |
[15] = draw_line4_15, |
[15] = draw_line4_15, |
[16] = draw_line4_16, |
[16] = draw_line4_16, |
[32] = draw_line4_32, |
[32] = draw_line4_32, |
}, draw_line_table8[33] = { |
}, draw_line_table8[33] = { |
[0 ... 32] = 0, |
[0 ... 32] = NULL, |
[8] = draw_line8_8, |
[8] = draw_line8_8, |
[15] = draw_line8_15, |
[15] = draw_line8_15, |
[16] = draw_line8_16, |
[16] = draw_line8_16, |
[32] = draw_line8_32, |
[32] = draw_line8_32, |
}, draw_line_table12[33] = { |
}, draw_line_table12[33] = { |
[0 ... 32] = 0, |
[0 ... 32] = NULL, |
[8] = draw_line12_8, |
[8] = draw_line12_8, |
[15] = draw_line12_15, |
[15] = draw_line12_15, |
[16] = draw_line12_16, |
[16] = draw_line12_16, |
[32] = draw_line12_32, |
[32] = draw_line12_32, |
}, draw_line_table16[33] = { |
}, draw_line_table16[33] = { |
[0 ... 32] = 0, |
[0 ... 32] = NULL, |
[8] = draw_line16_8, |
[8] = draw_line16_8, |
[15] = draw_line16_15, |
[15] = draw_line16_15, |
[16] = draw_line16_16, |
[16] = draw_line16_16, |
Line 401 static void omap_lcdc_write(void *opaque
|
Line 401 static void omap_lcdc_write(void *opaque
|
} |
} |
} |
} |
|
|
static CPUReadMemoryFunc *omap_lcdc_readfn[] = { |
static CPUReadMemoryFunc * const omap_lcdc_readfn[] = { |
omap_lcdc_read, |
omap_lcdc_read, |
omap_lcdc_read, |
omap_lcdc_read, |
omap_lcdc_read, |
omap_lcdc_read, |
}; |
}; |
|
|
static CPUWriteMemoryFunc *omap_lcdc_writefn[] = { |
static CPUWriteMemoryFunc * const omap_lcdc_writefn[] = { |
omap_lcdc_write, |
omap_lcdc_write, |
omap_lcdc_write, |
omap_lcdc_write, |
omap_lcdc_write, |
omap_lcdc_write, |