···41414242/* These routines should handle the standard chip-specific modes4343 * for usb0/1/2 ports, covering basic mux and transceiver setup.4444- * Call omap_usb_init() once, from INIT_MACHINE().4544 *4645 * Some board-*.c files will need to set up additional mux options,4746 * like for suspend handling, vbus sensing, GPIOs, and the D+ pullup.
···522522static int s3c24xx_serial_startup(struct uart_port *port)523523{524524 struct s3c24xx_uart_port *ourport = to_ourport(port);525525- unsigned long flags;526525 int ret;527526528527 dbg("s3c24xx_serial_startup: port=%p (%08lx,%p)\n",529528 port->mapbase, port->membase);530530-531531- local_irq_save(flags);532529533530 rx_enabled(port) = 1;534531···560563 /* the port reset code should have done the correct561564 * register setup for the port controls */562565563563- local_irq_restore(flags);564566 return ret;565567566568 err:567569 s3c24xx_serial_shutdown(port);568568- local_irq_restore(flags);569570 return ret;570571}571572