Searched refs:pargs (Results 1 – 7 of 7) sorted by relevance
| /linux/drivers/clk/ |
| A D | clk-pwm.c | 73 struct pwm_args pargs; in clk_pwm_probe() local 85 pwm_get_args(pwm, &pargs); in clk_pwm_probe() 86 if (!pargs.period) { in clk_pwm_probe() 92 clk_pwm->fixed_rate = div64_u64(NSEC_PER_SEC, pargs.period); in clk_pwm_probe() 99 if (pargs.period != NSEC_PER_SEC / clk_pwm->fixed_rate && in clk_pwm_probe() 100 pargs.period != DIV_ROUND_UP(NSEC_PER_SEC, clk_pwm->fixed_rate)) { in clk_pwm_probe() 111 ret = pwm_config(pwm, (pargs.period + 1) >> 1, pargs.period); in clk_pwm_probe()
|
| /linux/scripts/clang-tools/ |
| A D | run-clang-tools.py | 69 pargs = ["clang-tidy", "-p", args.path, "-checks=" + ",".join(checks)] 71 pargs.append("-header-filter=" + args.header_filter) 72 pargs.append(file) 73 p = subprocess.run(pargs,
|
| /linux/drivers/input/misc/ |
| A D | max77693-haptic.c | 69 struct pwm_args pargs; in max77693_haptic_set_duty_cycle() local 73 pwm_get_args(haptic->pwm_dev, &pargs); in max77693_haptic_set_duty_cycle() 74 delta = (pargs.period + haptic->pwm_duty) / 2; in max77693_haptic_set_duty_cycle() 75 error = pwm_config(haptic->pwm_dev, delta, pargs.period); in max77693_haptic_set_duty_cycle() 236 struct pwm_args pargs; in max77693_haptic_play_effect() local 248 pwm_get_args(haptic->pwm_dev, &pargs); in max77693_haptic_play_effect() 249 period_mag_multi = (u64)pargs.period * haptic->magnitude; in max77693_haptic_play_effect()
|
| /linux/arch/arm/mach-omap2/ |
| A D | omap-secure.h | 71 extern u32 omap_smc2(u32 id, u32 falg, u32 pargs); 72 extern u32 omap_smc3(u32 id, u32 process, u32 flag, u32 pargs);
|
| /linux/drivers/pwm/ |
| A D | core.c | 275 struct pwm_args pargs; in pwm_adjust_config() local 277 pwm_get_args(pwm, &pargs); in pwm_adjust_config() 290 state.period = pargs.period; in pwm_adjust_config() 291 state.polarity = pargs.polarity; in pwm_adjust_config() 300 if (pargs.period != state.period) { in pwm_adjust_config() 301 u64 dutycycle = (u64)state.duty_cycle * pargs.period; in pwm_adjust_config() 305 state.period = pargs.period; in pwm_adjust_config() 311 if (pargs.polarity != state.polarity) { in pwm_adjust_config() 312 state.polarity = pargs.polarity; in pwm_adjust_config()
|
| /linux/include/linux/ |
| A D | cpufreq.h | 1125 struct of_phandle_args *pargs) in of_perf_domain_get_sharing_cpumask() argument 1130 ret = parse_perf_domain(pcpu, list_name, cell_name, pargs); in of_perf_domain_get_sharing_cpumask() 1144 if (of_phandle_args_equal(pargs, &args)) in of_perf_domain_get_sharing_cpumask() 1181 struct of_phandle_args *pargs) in of_perf_domain_get_sharing_cpumask() argument
|
| /linux/Documentation/devicetree/bindings/iommu/ |
| A D | ti,omap-iommu.txt | 13 and needs no additional data in the pargs specifier. Please
|
Completed in 17 milliseconds