Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:clk_baud
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
H
A
D
8250_ingenic.c
32
struct clk *
clk_baud
;
member
266
data->
clk_baud
= devm_clk_get(&pdev->dev, "baud");
in ingenic_uart_probe()
267
if (IS_ERR(data->
clk_baud
))
in ingenic_uart_probe()
268
return dev_err_probe(&pdev->dev, PTR_ERR(data->
clk_baud
),
in ingenic_uart_probe()
277
err = clk_prepare_enable(data->
clk_baud
);
in ingenic_uart_probe()
282
uart.port.uartclk = clk_get_rate(data->
clk_baud
);
in ingenic_uart_probe()
294
clk_disable_unprepare(data->
clk_baud
);
in ingenic_uart_probe()
307
clk_disable_unprepare(data->
clk_baud
);
in ingenic_uart_remove()
/kernel/linux/linux-6.6/drivers/tty/serial/8250/
H
A
D
8250_ingenic.c
31
struct clk *
clk_baud
;
member
288
data->
clk_baud
= devm_clk_get(&pdev->dev, "baud");
in ingenic_uart_probe()
289
if (IS_ERR(data->
clk_baud
))
in ingenic_uart_probe()
290
return dev_err_probe(&pdev->dev, PTR_ERR(data->
clk_baud
),
in ingenic_uart_probe()
299
err = clk_prepare_enable(data->
clk_baud
);
in ingenic_uart_probe()
304
uart.port.uartclk = clk_get_rate(data->
clk_baud
);
in ingenic_uart_probe()
316
clk_disable_unprepare(data->
clk_baud
);
in ingenic_uart_probe()
329
clk_disable_unprepare(data->
clk_baud
);
in ingenic_uart_remove()
/kernel/linux/linux-5.10/drivers/tty/serial/
H
A
D
meson_uart.c
712
struct clk *
clk_baud
= NULL;
in meson_uart_probe_clocks()
local
722
clk_baud
= meson_uart_probe_clock(&pdev->dev, "baud");
in meson_uart_probe_clocks()
723
if (IS_ERR(
clk_baud
))
in meson_uart_probe_clocks()
724
return PTR_ERR(
clk_baud
);
in meson_uart_probe_clocks()
726
port->uartclk = clk_get_rate(
clk_baud
);
in meson_uart_probe_clocks()
/kernel/linux/linux-6.6/drivers/tty/serial/
H
A
D
meson_uart.c
678
struct clk *
clk_baud
= NULL;
in meson_uart_probe_clocks()
local
688
clk_baud
= devm_clk_get_enabled(&pdev->dev, "baud");
in meson_uart_probe_clocks()
689
if (IS_ERR(
clk_baud
))
in meson_uart_probe_clocks()
690
return PTR_ERR(
clk_baud
);
in meson_uart_probe_clocks()
692
port->uartclk = clk_get_rate(
clk_baud
);
in meson_uart_probe_clocks()
Completed in 4 milliseconds