summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-rw-r--r--firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c14
-rw-r--r--firmware/target/arm/ipod/lcd-color_nano.c16
-rw-r--r--firmware/target/arm/ipod/lcd-gray.c6
-rw-r--r--firmware/target/arm/ipod/video/lcd-video.c16
-rw-r--r--firmware/target/arm/iriver/h10/lcd-h10_20gb.c16
-rw-r--r--firmware/target/arm/iriver/h10/lcd-h10_5gb.c16
-rw-r--r--firmware/target/arm/olympus/mrobe-100/lcd-mr100.c6
-rw-r--r--firmware/target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c18
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c14
-rw-r--r--firmware/target/arm/sandisk/sansa-c200/lcd-c200.c16
-rw-r--r--firmware/target/arm/sandisk/sansa-e200/lcd-e200.c14
-rw-r--r--firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c16
-rw-r--r--firmware/target/arm/tcc77x/logikdax/lcd-logikdax.c18
-rw-r--r--firmware/target/arm/tcc780x/cowond2/lcd-cowond2.c14
-rw-r--r--firmware/target/arm/tms320dm320/mrobe-500/lcd-mr500.c14
15 files changed, 49 insertions, 165 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c b/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
index b39ddbe77d..07258fa123 100644
--- a/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
+++ b/firmware/target/arm/imx31/gigabeat-s/lcd-imx31.c
@@ -174,7 +174,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
174/* Performance function to blit a YUV bitmap directly to the LCD */ 174/* Performance function to blit a YUV bitmap directly to the LCD */
175/* For the Gigabeat - show it rotated */ 175/* For the Gigabeat - show it rotated */
176/* So the LCD_WIDTH is now the height */ 176/* So the LCD_WIDTH is now the height */
177void lcd_yuv_blit(unsigned char * const src[3], 177void lcd_blit_yuv(unsigned char * const src[3],
178 int src_x, int src_y, int stride, 178 int src_x, int src_y, int stride,
179 int x, int y, int width, int height) 179 int x, int y, int width, int height)
180{ 180{
@@ -235,18 +235,6 @@ void lcd_set_invert_display(bool yesno) {
235 // TODO: 235 // TODO:
236} 236}
237 237
238void lcd_blit(const fb_data* data, int bx, int y, int bwidth,
239 int height, int stride)
240{
241 (void) data;
242 (void) bx;
243 (void) y;
244 (void) bwidth;
245 (void) height;
246 (void) stride;
247 //TODO:
248}
249
250void lcd_set_flip(bool yesno) { 238void lcd_set_flip(bool yesno) {
251 (void) yesno; 239 (void) yesno;
252 // TODO: 240 // TODO:
diff --git a/firmware/target/arm/ipod/lcd-color_nano.c b/firmware/target/arm/ipod/lcd-color_nano.c
index b18b7ee712..482622bf57 100644
--- a/firmware/target/arm/ipod/lcd-color_nano.c
+++ b/firmware/target/arm/ipod/lcd-color_nano.c
@@ -109,20 +109,6 @@ void lcd_init_device(void)
109 109
110/*** update functions ***/ 110/*** update functions ***/
111 111
112/* Performance function that works with an external buffer
113 note that by and bheight are in 4-pixel units! */
114void lcd_blit(const fb_data* data, int x, int by, int width,
115 int bheight, int stride)
116{
117 /* TODO: Implement lcd_blit() */
118 (void)data;
119 (void)x;
120 (void)by;
121 (void)width;
122 (void)bheight;
123 (void)stride;
124}
125
126#define CSUB_X 2 112#define CSUB_X 2
127#define CSUB_Y 2 113#define CSUB_Y 2
128 114
@@ -155,7 +141,7 @@ void lcd_blit(const fb_data* data, int x, int by, int width,
155#define MAX_6BIT 0x3f 141#define MAX_6BIT 0x3f
156 142
157/* Performance function to blit a YUV bitmap directly to the LCD */ 143/* Performance function to blit a YUV bitmap directly to the LCD */
158void lcd_yuv_blit(unsigned char * const src[3], 144void lcd_blit_yuv(unsigned char * const src[3],
159 int src_x, int src_y, int stride, 145 int src_x, int src_y, int stride,
160 int x, int y, int width, int height) 146 int x, int y, int width, int height)
161{ 147{
diff --git a/firmware/target/arm/ipod/lcd-gray.c b/firmware/target/arm/ipod/lcd-gray.c
index b77d3eb7f6..e36a7efc1d 100644
--- a/firmware/target/arm/ipod/lcd-gray.c
+++ b/firmware/target/arm/ipod/lcd-gray.c
@@ -277,8 +277,8 @@ void lcd_mono_data(const unsigned char *data, int count);
277 277
278/* Performance function that works with an external buffer 278/* Performance function that works with an external buffer
279 note that x, bwidtht and stride are in 8-pixel units! */ 279 note that x, bwidtht and stride are in 8-pixel units! */
280void lcd_blit(const unsigned char* data, int bx, int y, int bwidth, 280void lcd_blit_mono(const unsigned char *data, int bx, int y, int bwidth,
281 int height, int stride) 281 int height, int stride)
282{ 282{
283 while (height--) 283 while (height--)
284 { 284 {
@@ -295,7 +295,7 @@ void lcd_grey_data(unsigned char *values, unsigned char *phases, int count);
295 295
296/* Performance function that works with an external buffer 296/* Performance function that works with an external buffer
297 note that bx and bwidth are in 8-pixel units! */ 297 note that bx and bwidth are in 8-pixel units! */
298void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases, 298void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
299 int bx, int y, int bwidth, int height, int stride) 299 int bx, int y, int bwidth, int height, int stride)
300{ 300{
301 while (height--) 301 while (height--)
diff --git a/firmware/target/arm/ipod/video/lcd-video.c b/firmware/target/arm/ipod/video/lcd-video.c
index 0829114289..d0c82e905c 100644
--- a/firmware/target/arm/ipod/video/lcd-video.c
+++ b/firmware/target/arm/ipod/video/lcd-video.c
@@ -247,20 +247,6 @@ void lcd_init_device(void)
247 247
248/*** update functions ***/ 248/*** update functions ***/
249 249
250/* Performance function that works with an external buffer
251 note that by and bheight are in 4-pixel units! */
252void lcd_blit(const fb_data* data, int x, int by, int width,
253 int bheight, int stride)
254{
255 /* TODO: Implement lcd_blit() */
256 (void)data;
257 (void)x;
258 (void)by;
259 (void)width;
260 (void)bheight;
261 (void)stride;
262}
263
264/* Update a fraction of the display. */ 250/* Update a fraction of the display. */
265void lcd_update_rect(int x, int y, int width, int height) 251void lcd_update_rect(int x, int y, int width, int height)
266{ 252{
@@ -319,7 +305,7 @@ extern void lcd_write_yuv420_lines(unsigned char const * const src[3],
319 int stride); 305 int stride);
320 306
321/* Performance function to blit a YUV bitmap directly to the LCD */ 307/* Performance function to blit a YUV bitmap directly to the LCD */
322void lcd_yuv_blit(unsigned char * const src[3], 308void lcd_blit_yuv(unsigned char * const src[3],
323 int src_x, int src_y, int stride, 309 int src_x, int src_y, int stride,
324 int x, int y, int width, int height) 310 int x, int y, int width, int height)
325{ 311{
diff --git a/firmware/target/arm/iriver/h10/lcd-h10_20gb.c b/firmware/target/arm/iriver/h10/lcd-h10_20gb.c
index 892adffea9..2052be724c 100644
--- a/firmware/target/arm/iriver/h10/lcd-h10_20gb.c
+++ b/firmware/target/arm/iriver/h10/lcd-h10_20gb.c
@@ -381,20 +381,6 @@ void lcd_sleep(void)
381 381
382/*** update functions ***/ 382/*** update functions ***/
383 383
384/* Performance function that works with an external buffer
385 note that by and bheight are in 4-pixel units! */
386void lcd_blit(const fb_data* data, int x, int by, int width,
387 int bheight, int stride)
388{
389 /* TODO: Implement lcd_blit() */
390 (void)data;
391 (void)x;
392 (void)by;
393 (void)width;
394 (void)bheight;
395 (void)stride;
396}
397
398void lcd_yuv_set_options(unsigned options) 384void lcd_yuv_set_options(unsigned options)
399{ 385{
400 lcd_yuv_options = options; 386 lcd_yuv_options = options;
@@ -411,7 +397,7 @@ extern void lcd_write_yuv420_lines_odither(unsigned char const * const src[3],
411 int y_screen); 397 int y_screen);
412 398
413/* Performance function to blit a YUV bitmap directly to the LCD */ 399/* Performance function to blit a YUV bitmap directly to the LCD */
414void lcd_yuv_blit(unsigned char * const src[3], 400void lcd_blit_yuv(unsigned char * const src[3],
415 int src_x, int src_y, int stride, 401 int src_x, int src_y, int stride,
416 int x, int y, int width, int height) 402 int x, int y, int width, int height)
417{ 403{
diff --git a/firmware/target/arm/iriver/h10/lcd-h10_5gb.c b/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
index 8972fd1e9c..5b022e09c5 100644
--- a/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
+++ b/firmware/target/arm/iriver/h10/lcd-h10_5gb.c
@@ -112,20 +112,6 @@ void lcd_init_device(void)
112 112
113/*** update functions ***/ 113/*** update functions ***/
114 114
115/* Performance function that works with an external buffer
116 note that by and bheight are in 4-pixel units! */
117void lcd_blit(const fb_data* data, int x, int by, int width,
118 int bheight, int stride)
119{
120 /* TODO: Implement lcd_blit() */
121 (void)data;
122 (void)x;
123 (void)by;
124 (void)width;
125 (void)bheight;
126 (void)stride;
127}
128
129#define CSUB_X 2 115#define CSUB_X 2
130#define CSUB_Y 2 116#define CSUB_Y 2
131 117
@@ -141,7 +127,7 @@ void lcd_blit(const fb_data* data, int x, int by, int width,
141#define ROUNDOFFSG (63*257) 127#define ROUNDOFFSG (63*257)
142 128
143/* Performance function to blit a YUV bitmap directly to the LCD */ 129/* Performance function to blit a YUV bitmap directly to the LCD */
144void lcd_yuv_blit(unsigned char * const src[3], 130void lcd_blit_yuv(unsigned char * const src[3],
145 int src_x, int src_y, int stride, 131 int src_x, int src_y, int stride,
146 int x, int y, int width, int height) 132 int x, int y, int width, int height)
147{ 133{
diff --git a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
index c7977e63fc..9fb6790cc4 100644
--- a/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
+++ b/firmware/target/arm/olympus/mrobe-100/lcd-mr100.c
@@ -118,8 +118,8 @@ void lcd_set_flip(bool yesno)
118 118
119/* Performance function that works with an external buffer 119/* Performance function that works with an external buffer
120 note that by and bheight are in 8-pixel units! */ 120 note that by and bheight are in 8-pixel units! */
121void lcd_blit(const unsigned char* data, int x, int by, int width, 121void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
122 int bheight, int stride) 122 int bheight, int stride)
123{ 123{
124 /* TODO: Implement lcd_blit() */ 124 /* TODO: Implement lcd_blit() */
125 (void)data; 125 (void)data;
@@ -132,7 +132,7 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
132 132
133/* Performance function that works with an external buffer 133/* Performance function that works with an external buffer
134 note that by and bheight are in 4-pixel units! */ 134 note that by and bheight are in 4-pixel units! */
135void lcd_grey_phase_blit(unsigned char *values, unsigned char *phases, 135void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
136 int x, int by, int width, int bheight, int stride) 136 int x, int by, int width, int bheight, int stride)
137{ 137{
138 /* TODO: Implement lcd_grey_phase_blit() */ 138 /* TODO: Implement lcd_grey_phase_blit() */
diff --git a/firmware/target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c b/firmware/target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
index 0aacd8af67..39caf66b69 100644
--- a/firmware/target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
+++ b/firmware/target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
@@ -145,8 +145,8 @@ void lcd_init_device(void)
145 145
146/* Performance function that works with an external buffer 146/* Performance function that works with an external buffer
147 note that by and bheight are in 8-pixel units! */ 147 note that by and bheight are in 8-pixel units! */
148void lcd_blit(const unsigned char* data, int x, int by, int width, 148void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
149 int bheight, int stride) 149 int bheight, int stride)
150{ 150{
151 /* Copy display bitmap to hardware */ 151 /* Copy display bitmap to hardware */
152 while (bheight--) 152 while (bheight--)
@@ -161,6 +161,20 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
161} 161}
162 162
163 163
164/* Performance function that works with an external buffer
165 note that by and bheight are in 8-pixel units! */
166void lcd_blit_grey_phase(unsigned char *values, unsigned char *phases,
167 int x, int by, int width, int bheight, int stride)
168{
169 (void)values;
170 (void)phases;
171 (void)x;
172 (void)by;
173 (void)width;
174 (void)bheight;
175 (void)stride;
176}
177
164/* Update the display. 178/* Update the display.
165 This must be called after all other LCD functions that change the display. */ 179 This must be called after all other LCD functions that change the display. */
166void lcd_update(void) ICODE_ATTR; 180void lcd_update(void) ICODE_ATTR;
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c b/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
index fc8822ba50..0d532f62c9 100644
--- a/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
+++ b/firmware/target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
@@ -350,7 +350,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
350/* Performance function to blit a YUV bitmap directly to the LCD */ 350/* Performance function to blit a YUV bitmap directly to the LCD */
351/* For the Gigabeat - show it rotated */ 351/* For the Gigabeat - show it rotated */
352/* So the LCD_WIDTH is now the height */ 352/* So the LCD_WIDTH is now the height */
353void lcd_yuv_blit(unsigned char * const src[3], 353void lcd_blit_yuv(unsigned char * const src[3],
354 int src_x, int src_y, int stride, 354 int src_x, int src_y, int stride,
355 int x, int y, int width, int height) 355 int x, int y, int width, int height)
356{ 356{
@@ -411,18 +411,6 @@ void lcd_set_invert_display(bool yesno) {
411 // TODO: 411 // TODO:
412} 412}
413 413
414void lcd_blit(const fb_data* data, int bx, int y, int bwidth,
415 int height, int stride)
416{
417 (void) data;
418 (void) bx;
419 (void) y;
420 (void) bwidth;
421 (void) height;
422 (void) stride;
423 //TODO:
424}
425
426void lcd_set_flip(bool yesno) { 414void lcd_set_flip(bool yesno) {
427 (void) yesno; 415 (void) yesno;
428 // TODO: 416 // TODO:
diff --git a/firmware/target/arm/sandisk/sansa-c200/lcd-c200.c b/firmware/target/arm/sandisk/sansa-c200/lcd-c200.c
index b17cce30fa..fed4119077 100644
--- a/firmware/target/arm/sandisk/sansa-c200/lcd-c200.c
+++ b/firmware/target/arm/sandisk/sansa-c200/lcd-c200.c
@@ -195,20 +195,6 @@ void lcd_set_flip(bool yesno)
195 195
196/*** update functions ***/ 196/*** update functions ***/
197 197
198/* Performance function that works with an external buffer
199 note that by and bheight are in 4-pixel units! */
200void lcd_blit(const fb_data* data, int x, int by, int width,
201 int bheight, int stride)
202{
203 /* TODO: Implement lcd_blit() */
204 (void)data;
205 (void)x;
206 (void)by;
207 (void)width;
208 (void)bheight;
209 (void)stride;
210}
211
212void lcd_yuv_set_options(unsigned options) 198void lcd_yuv_set_options(unsigned options)
213{ 199{
214 lcd_yuv_options = options; 200 lcd_yuv_options = options;
@@ -224,7 +210,7 @@ extern void lcd_write_yuv420_lines_odither(unsigned char const * const src[3],
224 int x_screen, /* To align dither pattern */ 210 int x_screen, /* To align dither pattern */
225 int y_screen); 211 int y_screen);
226/* Performance function to blit a YUV bitmap directly to the LCD */ 212/* Performance function to blit a YUV bitmap directly to the LCD */
227void lcd_yuv_blit(unsigned char * const src[3], 213void lcd_blit_yuv(unsigned char * const src[3],
228 int src_x, int src_y, int stride, 214 int src_x, int src_y, int stride,
229 int x, int y, int width, int height) 215 int x, int y, int width, int height)
230{ 216{
diff --git a/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c b/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
index e1212c9512..f2689eabbf 100644
--- a/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
+++ b/firmware/target/arm/sandisk/sansa-e200/lcd-e200.c
@@ -612,18 +612,6 @@ void lcd_set_flip(bool yesno)
612 612
613/* Blitting functions */ 613/* Blitting functions */
614 614
615void lcd_blit(const fb_data* data, int x, int by, int width,
616 int bheight, int stride)
617{
618 /* TODO: Implement lcd_blit() */
619 (void)data;
620 (void)x;
621 (void)by;
622 (void)width;
623 (void)bheight;
624 (void)stride;
625}
626
627void lcd_yuv_set_options(unsigned options) 615void lcd_yuv_set_options(unsigned options)
628{ 616{
629 lcd_yuv_options = options; 617 lcd_yuv_options = options;
@@ -643,7 +631,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
643/* Performance function to blit a YUV bitmap directly to the LCD */ 631/* Performance function to blit a YUV bitmap directly to the LCD */
644/* For the e200 - show it rotated */ 632/* For the e200 - show it rotated */
645/* So the LCD_WIDTH is now the height */ 633/* So the LCD_WIDTH is now the height */
646void lcd_yuv_blit(unsigned char * const src[3], 634void lcd_blit_yuv(unsigned char * const src[3],
647 int src_x, int src_y, int stride, 635 int src_x, int src_y, int stride,
648 int x, int y, int width, int height) 636 int x, int y, int width, int height)
649{ 637{
diff --git a/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c b/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
index 53f32792c3..d563d55017 100644
--- a/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
+++ b/firmware/target/arm/tatung/tpj1022/lcd-tpj1022.c
@@ -51,22 +51,8 @@ void lcd_init_device(void)
51 51
52/*** update functions ***/ 52/*** update functions ***/
53 53
54/* Performance function that works with an external buffer
55 note that by and bheight are in 4-pixel units! */
56void lcd_blit(const fb_data* data, int x, int by, int width,
57 int bheight, int stride)
58{
59 /* TODO: Implement lcd_blit() */
60 (void)data;
61 (void)x;
62 (void)by;
63 (void)width;
64 (void)bheight;
65 (void)stride;
66}
67
68/* Performance function to blit a YUV bitmap directly to the LCD */ 54/* Performance function to blit a YUV bitmap directly to the LCD */
69void lcd_yuv_blit(unsigned char * const src[3], 55void lcd_blit_yuv(unsigned char * const src[3],
70 int src_x, int src_y, int stride, 56 int src_x, int src_y, int stride,
71 int x, int y, int width, int height) 57 int x, int y, int width, int height)
72{ 58{
diff --git a/firmware/target/arm/tcc77x/logikdax/lcd-logikdax.c b/firmware/target/arm/tcc77x/logikdax/lcd-logikdax.c
index 973d4cb333..4101f6ab7d 100644
--- a/firmware/target/arm/tcc77x/logikdax/lcd-logikdax.c
+++ b/firmware/target/arm/tcc77x/logikdax/lcd-logikdax.c
@@ -190,8 +190,8 @@ void lcd_init_device(void)
190 190
191/* Performance function that works with an external buffer 191/* Performance function that works with an external buffer
192 note that by and bheight are in 8-pixel units! */ 192 note that by and bheight are in 8-pixel units! */
193void lcd_blit(const unsigned char* data, int x, int by, int width, 193void lcd_blit_mono(const unsigned char *data, int x, int by, int width,
194 int bheight, int stride) 194 int bheight, int stride)
195{ 195{
196 /* Copy display bitmap to hardware */ 196 /* Copy display bitmap to hardware */
197 while (bheight--) 197 while (bheight--)
@@ -206,6 +206,20 @@ void lcd_blit(const unsigned char* data, int x, int by, int width,
206} 206}
207 207
208 208
209/* Performance function that works with an external buffer
210 note that by and bheight are in 8-pixel units! */
211void lcd_blit_grey_phase_blit(unsigned char *values, unsigned char *phases,
212 int x, int by, int width, int bheight, int stride)
213{
214 (void)values;
215 (void)phases;
216 (void)x;
217 (void)by;
218 (void)width;
219 (void)bheight;
220 (void)stride;
221}
222
209/* Update the display. 223/* Update the display.
210 This must be called after all other LCD functions that change the display. */ 224 This must be called after all other LCD functions that change the display. */
211void lcd_update(void) ICODE_ATTR; 225void lcd_update(void) ICODE_ATTR;
diff --git a/firmware/target/arm/tcc780x/cowond2/lcd-cowond2.c b/firmware/target/arm/tcc780x/cowond2/lcd-cowond2.c
index 097dec31d3..54466f428b 100644
--- a/firmware/target/arm/tcc780x/cowond2/lcd-cowond2.c
+++ b/firmware/target/arm/tcc780x/cowond2/lcd-cowond2.c
@@ -370,18 +370,6 @@ void lcd_set_invert_display(bool yesno)
370 (void)yesno; 370 (void)yesno;
371} 371}
372 372
373void lcd_blit(const fb_data* data, int bx, int y, int bwidth,
374 int height, int stride)
375{
376 // TODO
377 (void)data;
378 (void)bx;
379 (void)y;
380 (void)bwidth;
381 (void)height;
382 (void)stride;
383}
384
385void lcd_yuv_set_options(unsigned options) 373void lcd_yuv_set_options(unsigned options)
386{ 374{
387 lcd_yuv_options = options; 375 lcd_yuv_options = options;
@@ -400,7 +388,7 @@ extern void lcd_write_yuv420_lines_odither(fb_data *dst,
400 int y_screen); 388 int y_screen);
401 389
402/* Performance function to blit a YUV bitmap directly to the LCD */ 390/* Performance function to blit a YUV bitmap directly to the LCD */
403void lcd_yuv_blit(unsigned char * const src[3], 391void lcd_blit_yuv(unsigned char * const src[3],
404 int src_x, int src_y, int stride, 392 int src_x, int src_y, int stride,
405 int x, int y, int width, int height) 393 int x, int y, int width, int height)
406{ 394{
diff --git a/firmware/target/arm/tms320dm320/mrobe-500/lcd-mr500.c b/firmware/target/arm/tms320dm320/mrobe-500/lcd-mr500.c
index e4b36eb9be..241b82983c 100644
--- a/firmware/target/arm/tms320dm320/mrobe-500/lcd-mr500.c
+++ b/firmware/target/arm/tms320dm320/mrobe-500/lcd-mr500.c
@@ -163,7 +163,7 @@ extern void lcd_write_yuv420_lines(fb_data *dst,
163/* Performance function to blit a YUV bitmap directly to the LCD */ 163/* Performance function to blit a YUV bitmap directly to the LCD */
164/* For the Gigabeat - show it rotated */ 164/* For the Gigabeat - show it rotated */
165/* So the LCD_WIDTH is now the height */ 165/* So the LCD_WIDTH is now the height */
166void lcd_yuv_blit(unsigned char * const src[3], 166void lcd_blit_yuv(unsigned char * const src[3],
167 int src_x, int src_y, int stride, 167 int src_x, int src_y, int stride,
168 int x, int y, int width, int height) 168 int x, int y, int width, int height)
169{ 169{
@@ -210,18 +210,6 @@ void lcd_set_invert_display(bool yesno) {
210 // TODO: 210 // TODO:
211} 211}
212 212
213void lcd_blit(const fb_data* data, int bx, int y, int bwidth,
214 int height, int stride)
215{
216 (void) data;
217 (void) bx;
218 (void) y;
219 (void) bwidth;
220 (void) height;
221 (void) stride;
222 //TODO:
223}
224
225void lcd_set_flip(bool yesno) { 213void lcd_set_flip(bool yesno) {
226 (void) yesno; 214 (void) yesno;
227 // TODO: 215 // TODO: