summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-20 09:15:32 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-10-20 10:02:05 -0500
commit770e3797c54c7492ace7cd99b1263afbfb01180b (patch)
tree34f33753697a38a249df4bfb9455bfbee1f7173a
parentlibcpu/arm/pxa255/ffuart/ffuart.c: Fix warning (diff)
downloadrtems-770e3797c54c7492ace7cd99b1263afbfb01180b.tar.bz2
arm/csb337/console/fbcons.c: Fix warning
-rw-r--r--c/src/lib/libbsp/arm/csb337/console/fbcons.c22
1 files changed, 4 insertions, 18 deletions
diff --git a/c/src/lib/libbsp/arm/csb337/console/fbcons.c b/c/src/lib/libbsp/arm/csb337/console/fbcons.c
index 87067cacf5..62e840938d 100644
--- a/c/src/lib/libbsp/arm/csb337/console/fbcons.c
+++ b/c/src/lib/libbsp/arm/csb337/console/fbcons.c
@@ -1,7 +1,9 @@
/*
* LCD Console Output Driver for CSBx37
- *
- * COPYRIGHT (c) 1989-2009.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2014.
* On-Line Applications Research Corporation (OAR).
*
* Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
@@ -121,19 +123,3 @@ static int fbcons_set_attributes(int minor, const struct termios *t)
/* printk( "frame buffer -- set attributes\n" ); */
return 0;
}
-
-/***********************************************************************/
-/*
- * The following functions are not used by TERMIOS, but other RTEMS
- * functions use them instead.
- */
-/***********************************************************************/
-/*
- * Read from UART. This is used in the exit code, and can't
- * rely on interrupts.
- */
-int fbcons_poll_read(int minor)
-{
- /* printk( "frame buffer -- poll read\n" ); */
- return -1;
-}