Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/scripts/dtc/
H A Ddt_to_config327 my $config_cnt = $pn_arg_ref->{config_cnt};
344 if ($config_cnt > 1) {
385 if (($config_cnt >= 1) &&
440 my $config_cnt = $pn_arg_ref->{config_cnt};
720 $$pn_arg_ref{config_cnt} = $#configs + 1;
768 $pn_arg{config_cnt} = 1;
780 $pn_arg{config_cnt} = $#{ $driver_config{$driver}} + 1;
809 $pn_arg{config_cnt} = 1;
827 $pn_arg{config_cnt} = $#{ $driver_config{$driver} } + 1;
/OK3568_Linux_fs/kernel/drivers/devfreq/
H A Drockchip_bus.c78 int ret = 0, config_cnt, i; in rockchip_bus_smc_config() local
113 config_cnt = of_property_count_u32_elems(np, prp_name); in rockchip_bus_smc_config()
114 if (config_cnt <= 0) { in rockchip_bus_smc_config()
116 } else if (config_cnt % 3) { in rockchip_bus_smc_config()
121 table = kmalloc_array(config_cnt, sizeof(u32), GFP_KERNEL); in rockchip_bus_smc_config()
125 ret = of_property_read_u32_array(np, prp_name, table, config_cnt); in rockchip_bus_smc_config()
135 for (i = 0; i < config_cnt; i += 3) { in rockchip_bus_smc_config()