source: rtems/c/src/lib/libbsp/shared/dummy_printk_support.c @ 38c0b112

4.115
Last change on this file since 38c0b112 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 693 bytes
Line 
1/*
2 *  This file contains a stub for the required printk support.
3 *  It is NOT functional!!!
4 *
5 *  This driver uses the termios pseudo driver.
6 *
7 *  COPYRIGHT (c) 1989-2007.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 */
14
15/*
16 *  To support printk
17 */
18
19#include <rtems.h>
20#include <rtems/bspIo.h>
21
22void BSP_output_char_f(char c)
23{
24  /* the character just needs to disappear */
25}
26
27BSP_output_char_function_type           BSP_output_char = BSP_output_char_f;
28BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.