Home
last modified time | relevance | path

Searched refs:stm32port (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/drivers/tty/serial/
Dstm32-usart.c470 struct stm32_port *stm32port = container_of(port, in stm32_pm() local
476 clk_prepare_enable(stm32port->clk); in stm32_pm()
482 clk_disable_unprepare(stm32port->clk); in stm32_pm()
508 static int stm32_init_port(struct stm32_port *stm32port, in stm32_init_port() argument
511 struct uart_port *port = &stm32port->port; in stm32_init_port()
529 stm32port->clk = devm_clk_get(&pdev->dev, NULL); in stm32_init_port()
530 if (IS_ERR(stm32port->clk)) in stm32_init_port()
531 return PTR_ERR(stm32port->clk); in stm32_init_port()
534 ret = clk_prepare_enable(stm32port->clk); in stm32_init_port()
538 stm32port->port.uartclk = clk_get_rate(stm32port->clk); in stm32_init_port()
[all …]