From 844de9915c5a6568d9f83dba66ccd46777b7b50a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 4 Nov 2002 14:27:49 +0000 Subject: 2002-11-04 Joel Sherrill * console/console.c, network/network.c: Removed warnings. --- c/src/lib/libbsp/powerpc/mbx8xx/console/console.c | 35 +++++++++++++---------- 1 file changed, 20 insertions(+), 15 deletions(-) (limited to 'c/src/lib/libbsp/powerpc/mbx8xx/console/console.c') diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/console/console.c b/c/src/lib/libbsp/powerpc/mbx8xx/console/console.c index 8f731058d5..f1ef0c4b4c 100644 --- a/c/src/lib/libbsp/powerpc/mbx8xx/console/console.c +++ b/c/src/lib/libbsp/powerpc/mbx8xx/console/console.c @@ -856,12 +856,11 @@ rtems_device_driver console_open( void *arg ) { +#if NVRAM_CONFIGURE == 1 /* Used to track termios private data for callbacks */ extern struct rtems_termios_tty *ttyp[]; - rtems_libio_open_close_args_t *args = arg; - rtems_status_code sc; - +#endif static const rtems_termios_callbacks sccEPPCBugCallbacks = { NULL, /* firstOpen */ NULL, /* lastClose */ @@ -871,29 +870,35 @@ rtems_device_driver console_open( NULL, /* startRemoteTx */ 0 /* outputUsesInterrupts */ }; - - static const rtems_termios_callbacks intrCallbacks = { + static const rtems_termios_callbacks pollCallbacks = { NULL, /* firstOpen */ NULL, /* lastClose */ - NULL, /* pollRead */ - m8xx_uart_write, /* write */ - m8xx_uart_setAttributes, /* setAttributes */ + m8xx_uart_pollRead, /* pollRead */ + m8xx_uart_pollWrite, /* write */ + m8xx_uart_setAttributes, /* setAttributes */ NULL, /* stopRemoteTx */ NULL, /* startRemoteTx */ - 1 /* outputUsesInterrupts */ + 0 /* outputUsesInterrupts */ }; + rtems_status_code sc; - static const rtems_termios_callbacks pollCallbacks = { + +#if (NVRAM_CONFIGURE == 1) || \ + ((NVRAM_CONFIGURE != 1) && (UARTS_USE_TERMIOS == 1) && \ + (UARTS_IO_MODE == 1)) + + static const rtems_termios_callbacks intrCallbacks = { NULL, /* firstOpen */ NULL, /* lastClose */ - m8xx_uart_pollRead, /* pollRead */ - m8xx_uart_pollWrite, /* write */ - m8xx_uart_setAttributes, /* setAttributes */ + NULL, /* pollRead */ + m8xx_uart_write, /* write */ + m8xx_uart_setAttributes, /* setAttributes */ NULL, /* stopRemoteTx */ NULL, /* startRemoteTx */ - 0 /* outputUsesInterrupts */ + 1 /* outputUsesInterrupts */ }; - +#endif + if ( minor > NUM_PORTS-1 ) return RTEMS_INVALID_NUMBER; -- cgit v1.2.3