Changeset b38c079 in mainline for kernel/arch/arm32/src/mach/beaglebone/beaglebone.c
- Timestamp:
- 2013-05-01T00:08:28Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ca8422b
- Parents:
- 9e7898e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/mach/beaglebone/beaglebone.c
r9e7898e rb38c079 68 68 am335x_ctrl_module_t *ctrl_module; 69 69 am335x_timer_t timer; 70 am335x_uart_t uart;70 omap_uart_t uart; 71 71 } bbone; 72 72 … … 195 195 static void bbone_output_init(void) 196 196 { 197 const bool ok = am335x_uart_init(&bbone.uart,197 const bool ok = omap_uart_init(&bbone.uart, 198 198 AM335x_UART0_IRQ, AM335x_UART0_BASE_ADDRESS, 199 199 AM335x_UART0_SIZE); … … 209 209 indev_t *sink = stdin_wire(); 210 210 indev_t *srln = srln_wire(srln_instance, sink); 211 am335x_uart_input_wire(&bbone.uart, srln);211 omap_uart_input_wire(&bbone.uart, srln); 212 212 am335x_irc_enable(bbone.irc_addr, AM335x_UART0_IRQ); 213 213 }
Note:
See TracChangeset
for help on using the changeset viewer.