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:i8k_fan_max
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/drivers/hwmon/
H
A
D
dell-smm-hwmon.c
78
uint
i8k_fan_max
;
member
320
speed = (speed < 0) ? 0 : ((speed > data->
i8k_fan_max
) ? data->
i8k_fan_max
: speed);
in i8k_set_fan()
617
*state = cdata->data->
i8k_fan_max
;
in dell_smm_get_max_state()
642
if (state > data->
i8k_fan_max
)
in dell_smm_set_cur_state()
776
*val = data->fan_nominal_speed[channel][data->
i8k_fan_max
] * mult;
in dell_smm_read()
784
if (ret > data->
i8k_fan_max
)
in dell_smm_read()
785
ret = data->
i8k_fan_max
;
in dell_smm_read()
878
data->
i8k_fan_max
);
in dell_smm_write()
1024
data->fan_nominal_speed[i] = devm_kmalloc_array(dev, data->
i8k_fan_max
in dell_smm_init_hwmon()
[all...]
/kernel/linux/linux-5.10/drivers/hwmon/
H
A
D
dell-smm-hwmon.c
68
static uint
i8k_fan_max
= I8K_FAN_HIGH;
variable
329
speed = (speed < 0) ? 0 : ((speed >
i8k_fan_max
) ?
i8k_fan_max
: speed);
in i8k_set_fan()
742
val = clamp_val(DIV_ROUND_CLOSEST(val, i8k_pwm_mult), 0,
i8k_fan_max
);
in i8k_hwmon_pwm_store()
1285
i8k_fan_max
= fan_max ? : I8K_FAN_HIGH; /* Must not be 0 */
in i8k_probe()
1286
i8k_pwm_mult = DIV_ROUND_UP(255,
i8k_fan_max
);
in i8k_probe()
1303
ret = i8k_get_fan_nominal_speed(fan,
i8k_fan_max
);
in i8k_probe()
Completed in 4 milliseconds