This fixes the following PDCurses warnings:
    CC         curses/pdcurses-backend/pdcsetsc.libcurses.o
curses/pdcurses-backend/pdcsetsc.c: In function 'PDC_curs_set':
curses/pdcurses-backend/pdcsetsc.c:17:9: warning: implicit declaration of function 'serial_cursor_enable' [-Wimplicit-function-declaration]
curses/pdcurses-backend/pdcsetsc.c:22:9: warning: implicit declaration of function 'video_console_cursor_enable' [-Wimplicit-function-declaration]
    CC         curses/pdcurses-backend/pdcutil.libcurses.o
curses/pdcurses-backend/pdcutil.c:30:6: warning: no previous prototype for 'curses_enable_serial' [-Wmissing-prototypes]
curses/pdcurses-backend/pdcutil.c:35:6: warning: no previous prototype for 'curses_enable_vga' [-Wmissing-prototypes]
curses/pdcurses-backend/pdcutil.c:40:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
curses/pdcurses-backend/pdcutil.c:45:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
Change-Id: If0d4d475d3006f1a77f67ec46c6bdf4ee2906981
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2908
Reviewed-by: Dave Frodin <dave.frodin@se-eng.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			927 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			927 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Public Domain Curses */
 | |
| /* This file is BSD licensed, Copyright 2011 secunet AG */
 | |
| 
 | |
| #include "lppdc.h"
 | |
| #include <curses.h>
 | |
| #include <libpayload.h>
 | |
| 
 | |
| int curses_flags = F_ENABLE_SERIAL | F_ENABLE_CONSOLE;
 | |
| 
 | |
| void PDC_beep(void)
 | |
| {
 | |
|     PDC_LOG(("PDC_beep() - called\n"));
 | |
| 
 | |
| #ifdef CONFIG_SPEAKER
 | |
|     speaker_tone(1760, 500); /* 1760 == note A6 */
 | |
| #endif
 | |
| }
 | |
| 
 | |
| void PDC_napms(int ms)
 | |
| {
 | |
|     PDC_LOG(("PDC_napms() - called: ms=%d\n", ms));
 | |
| 
 | |
|     mdelay(ms);
 | |
| }
 | |
| 
 | |
| const char *PDC_sysname(void)
 | |
| {
 | |
|     return "LIBPAYLOAD";
 | |
| }
 | |
| 
 | |
| void curses_enable_serial(int enable)
 | |
| {
 | |
|     curses_flags = (curses_flags & ~F_ENABLE_SERIAL) | (enable * F_ENABLE_SERIAL);
 | |
| }
 | |
| 
 | |
| void curses_enable_vga(int enable)
 | |
| {
 | |
|     curses_flags = (curses_flags & ~F_ENABLE_CONSOLE) | (enable * F_ENABLE_CONSOLE);
 | |
| }
 | |
| 
 | |
| int curses_serial_enabled(void)
 | |
| {
 | |
|     return !!(curses_flags & F_ENABLE_SERIAL);
 | |
| }
 | |
| 
 | |
| int curses_vga_enabled(void)
 | |
| {
 | |
|     return !!(curses_flags & F_ENABLE_CONSOLE);
 | |
| }
 | |
| 
 |