Changeset 93b8c70 in rtems
- Timestamp:
- 10/18/11 18:26:55 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 1aa561d
- Parents:
- bdd3b637
- Location:
- c/src/lib/libbsp/arm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/csb337/ChangeLog
rbdd3b637 r93b8c70 1 2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com> 2 3 PR 1917/bsps 4 * Makefile.am, console/uarts.c: Modifications to add dynamic tables for 5 libchip serial drivers. 6 1 7 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/arm/csb337/Makefile.am
rbdd3b637 r93b8c70 62 62 ../../shared/gnatinstallhandler.c 63 63 # console 64 libbsp_a_SOURCES += ../../shared/console.c console/uarts.c 64 libbsp_a_SOURCES += ../../shared/console.c console/uarts.c \ 65 ../../shared/console_select.c ../../shared/console_control.c \ 66 ../../shared/console_read.c ../../shared/console_write.c 65 67 # IRQ 66 68 include_bsp_HEADERS += ../../shared/include/irq-generic.h \ -
c/src/lib/libbsp/arm/csb337/console/uarts.c
rbdd3b637 r93b8c70 19 19 * 20 20 * $Id$ 21 */21 */ 22 22 23 23 #include <bsp.h> … … 32 32 #include <bspopts.h> 33 33 34 /* rtems console uses the following minor number */35 rtems_device_minor_number Console_Port_Minor = 0;36 34 extern console_fns dbgu_fns; 37 35 … … 83 81 84 82 /* These are used by code in console.c */ 85 unsigned long Console_Port_Count = NUM_DEVS; 86 console_data Console_Port_Data[NUM_DEVS]; 83 unsigned long Console_Configuration_Count = NUM_DEVS; 87 84 88 85 /* … … 95 92 * structure to a generic uart.c file with only this in it 96 93 */ 97 console_tbl Console_ Port_Tbl[] = {94 console_tbl Console_Configuration_Ports[] = { 98 95 { 99 96 "/dev/console", /* sDeviceName */ … … 245 242 console_tbl *BSP_get_uart_from_minor(int minor) 246 243 { 247 return &Console_Port_Tbl[minor];244 return Console_Port_Tbl[minor]; 248 245 } -
c/src/lib/libbsp/arm/gumstix/ChangeLog
rbdd3b637 r93b8c70 1 2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com> 2 3 PR 1917/bsps 4 * Makefile.am, console/uarts.c: Modifications to add dynamic tables for 5 libchip serial drivers. 6 1 7 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org> 2 8 -
c/src/lib/libbsp/arm/gumstix/Makefile.am
rbdd3b637 r93b8c70 40 40 41 41 #console 42 libbsp_a_SOURCES += console/uarts.c ../../shared/console.c 42 libbsp_a_SOURCES += console/uarts.c ../../shared/console.c \ 43 ../../shared/console_select.c ../../shared/console_control.c \ 44 ../../shared/console_read.c ../../shared/console_write.c 43 45 # IRQ 44 46 include_bsp_HEADERS += ../../shared/include/irq-generic.h \ -
c/src/lib/libbsp/arm/gumstix/console/uarts.c
rbdd3b637 r93b8c70 28 28 29 29 /* These are used by code in console.c */ 30 unsigned long Console_Port_Count = NUM_DEVS; 31 console_data Console_Port_Data[NUM_DEVS]; 30 unsigned long Console_Configuration_Count = NUM_DEVS; 32 31 33 /* rtems console uses the following minor number */34 rtems_device_minor_number Console_Port_Minor = 0;35 32 extern console_fns ffuart_fns; 36 33 … … 44 41 * structure to a generic uart.c file with only this in it 45 42 */ 46 console_tbl Console_ Port_Tbl[] = {43 console_tbl Console_Configuration_Ports[] = { 47 44 { 48 45 "/dev/console", /* sDeviceName */ … … 68 65 console_tbl *BSP_get_uart_from_minor(int minor) 69 66 { 70 return &Console_Port_Tbl[minor];67 return Console_Port_Tbl[minor]; 71 68 }
Note: See TracChangeset
for help on using the changeset viewer.