leon3/console.c: Fix misisng prototype issues

This commit is contained in:
Joel Sherrill
2013-09-21 16:25:06 -05:00
parent 949265991e
commit c8707a316b

View File

@@ -32,6 +32,7 @@
#include <assert.h> #include <assert.h>
#include <rtems/bspIo.h> #include <rtems/bspIo.h>
#include <amba.h> #include <amba.h>
#include <rtems/termiostypes.h>
/* Let user override which on-chip APBUART will be debug UART /* Let user override which on-chip APBUART will be debug UART
* 0 = Default APBUART. On MP system CPU0=APBUART0, CPU1=APBUART1... * 0 = Default APBUART. On MP system CPU0=APBUART0, CPU1=APBUART1...
@@ -142,10 +143,14 @@ int console_write_interrupt(int minor, const char *buf, int len)
#else #else
/* /*
* Console Termios Support Entry Points * Prototypes to avoid warnings
*
*/ */
ssize_t console_write_polled(int minor, const char *buf, size_t len);
int console_pollRead(int minor);
/*
* Console Termios Support Entry Points
*/
ssize_t console_write_polled(int minor, const char *buf, size_t len) ssize_t console_write_polled(int minor, const char *buf, size_t len)
{ {
int nwrite = 0, port; int nwrite = 0, port;
@@ -176,6 +181,14 @@ int console_pollRead(int minor)
#endif #endif
/*
* Prototypes to avoid warnings
*/
int console_set_attributes(int minor, const struct termios *t);
int find_matching_apbuart(struct ambapp_dev *dev, int index, void *arg);
int console_scan_uarts(void);
int console_set_attributes(int minor, const struct termios *t) int console_set_attributes(int minor, const struct termios *t)
{ {
unsigned int scaler; unsigned int scaler;