mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
ed82fb145a
There is no such function in the code, so remove this prorotype. Signed-off-by: Anatolij Gustschin <agust@denx.de>
18 lines
316 B
C
18 lines
316 B
C
/*
|
|
** MPC823 Video Controller
|
|
** =======================
|
|
** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
|
|
** AIRVENT SAM s.p.a - RIMINI(ITALY)
|
|
**
|
|
*/
|
|
|
|
#ifndef _VIDEO_H_
|
|
#define _VIDEO_H_
|
|
|
|
/* Video functions */
|
|
|
|
int video_init (void *videobase);
|
|
void video_putc (const char c);
|
|
void video_puts (const char *s);
|
|
|
|
#endif
|