1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2025-02-17 15:14:43 +02:00

ubb-vga2.c (line, frame): don't pass prefetch pointer but just use *p

This commit is contained in:
Werner Almesberger 2011-04-28 11:57:21 -03:00
parent 6414d92412
commit e94b3bbcfc

View File

@ -262,7 +262,7 @@ void setup(void)
} }
static void line(const uint32_t *line, volatile const uint32_t *prefetch) static void line(const uint32_t *line)
{ {
const uint32_t *p = line; const uint32_t *p = line;
@ -344,7 +344,7 @@ static void line(const uint32_t *line, volatile const uint32_t *prefetch)
} }
fail: fail:
(void) *prefetch; (void) *(volatile const uint32_t *) p;
until(line_cycles); until(line_cycles);
} }
@ -385,7 +385,7 @@ static void frame(const uint32_t *f)
until(line_cycles-US(0.79)); until(line_cycles-US(0.79));
for (p = f; p != f+YRES*line_words; p += line_words) for (p = f; p != f+YRES*line_words; p += line_words)
line(p, p+line_words); line(p);
/* Back porch */ /* Back porch */
hdelay(14); hdelay(14);