From 34b7ebdf6898d97aaacfeeb0c356b8a7a8129534 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 21 Mar 2012 19:47:23 +0000 Subject: [PATCH] Move serial header files to include/nuttx/serial git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4500 42af7a65-404d-4744-a932-0658087f49c3 --- ChangeLog | 6 +- Documentation/NuttxPortingGuide.html | 2 +- arch/arm/src/c5471/c5471_serial.c | 2 +- arch/arm/src/dm320/dm320_serial.c | 2 +- arch/arm/src/imx/imx_serial.c | 2 +- arch/arm/src/kinetis/kinetis_serial.c | 2 +- arch/arm/src/lm3s/lm3s_serial.c | 2 +- arch/arm/src/lpc17xx/lpc17_serial.c | 2 +- arch/arm/src/lpc214x/lpc214x_serial.c | 2 +- arch/arm/src/lpc2378/lpc23xx_serial.c | 2 +- arch/arm/src/lpc31xx/lpc31_serial.c | 2 +- arch/arm/src/sam3u/sam3u_serial.c | 2 +- arch/arm/src/stm32/stm32_serial.c | 2 +- arch/arm/src/str71x/str71x_serial.c | 2 +- arch/avr/src/at32uc3/at32uc3_serial.c | 2 +- arch/avr/src/at90usb/at90usb_serial.c | 2 +- arch/avr/src/atmega/atmega_serial.c | 2 +- arch/mips/src/pic32mx/pic32mx-serial.c | 2 +- arch/rgmp/src/x86/com.c | 2 +- arch/sh/src/m16c/m16c_serial.c | 2 +- arch/sh/src/sh1/sh1_serial.c | 2 +- arch/x86/src/qemu/qemu_serial.c | 2 +- arch/z16/src/z16f/z16f_serial.c | 2 +- arch/z80/src/ez80/ez80_serial.c | 2 +- arch/z80/src/z8/z8_serial.c | 2 +- configs/stm3210e-eval/RIDE/nuttx.rdb | Bin 116739 -> 116746 bytes configs/xtrs/src/xtr_serial.c | 2 +- configs/z80sim/src/z80_serial.c | 2 +- drivers/README.txt | 2 +- drivers/serial/serial.c | 2 +- drivers/serial/serialirq.c | 2 +- drivers/serial/uart_16550.c | 4 +- drivers/usbdev/cdcacm.c | 2 +- drivers/usbdev/pl2303.c | 2 +- include/nuttx/fs/ioctl.h | 2 +- include/nuttx/{ => serial}/serial.h | 8 +- include/nuttx/{ => serial}/tioctl.h | 8 +- include/nuttx/{ => serial}/uart_16550.h | 702 ++++++++++++------------ include/nuttx/usb/cdcacm.h | 2 +- lib/termios/lib_tcgetattr.c | 2 +- lib/termios/lib_tcsetattr.c | 2 +- 41 files changed, 400 insertions(+), 398 deletions(-) rename include/nuttx/{ => serial}/serial.h (98%) rename include/nuttx/{ => serial}/tioctl.h (98%) rename include/nuttx/{ => serial}/uart_16550.h (96%) diff --git a/ChangeLog b/ChangeLog index b923409c320..1c82e0202ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1532,8 +1532,8 @@ (and others). Contributed by Uros Platise. * examples/nsh and tools/mkromfsimg.sh: Add support for platform-specific ROMFS-based NSH start-up scripts. - * drivers/uart_16550.c and include/nuttx/uart_16550.h: Support for a generic - 16550 UART. + * drivers/serial/uart_16550.c and include/nuttx/serial/uart_16550.h: Support + for a generic 16550 UART. * configure/qemu-i486/nsh: QEMU NSH example. * ../apps: The apps directory add-on was created by Uros Platise. It supports a set of end-user applications than can be executed on top of @@ -2581,3 +2581,5 @@ device is, however, still non-functional when debug is OFF. * include/nuttx/fs: Move all file-system related files from include/nuttx to include/nuttx/fs. + * include/nuttx/serial: Move all serial-driver related files from include/nuttx to + include/nuttx/serial. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 8550d98fcce..8b447661436 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -2542,7 +2542,7 @@ extern void up_ledoff(int led);