Searched refs:get_val (Results 1 – 4 of 4) sorted by relevance
/openbmc/u-boot/drivers/mmc/ |
H A D | davinci_mmc.c | 23 #define get_val(addr) REG(addr) macro 25 #define set_bit(addr, val) set_val((addr), (get_val(addr) | (val))) 26 #define clear_bit(addr, val) set_val((addr), (get_val(addr) & ~(val))) 94 while (--wdog && ((get_val(®s->mmcst1) & status) != status)) 97 if (!(get_val(®s->mmcctl) & MMCCTL_WIDTH_4_BIT)) 111 while (--wdog && (get_val(®s->mmcst1) & MMCST1_BUSY)) 130 mmcstatus = get_val(®s->mmcst1); 146 mmcstatus = get_val(®s->mmcst0); 150 get_val(®s->mmcst1)); 175 mmcstatus = get_val(®s->mmcst0); [all …]
|
/openbmc/linux/arch/arm/boot/compressed/ |
H A D | fdt_check_mem_start.c | 37 static uint64_t get_val(const fdt32_t *cells, uint32_t ncells) in get_val() function 93 size = get_val(usable + addr_cells, size_cells); in fdt_check_mem_start() 122 size = get_val(reg + addr_cells, size_cells); in fdt_check_mem_start()
|
/openbmc/linux/drivers/cpufreq/ |
H A D | intel_pstate.c | 291 u64 (*get_val)(struct cpudata*, int pstate); member 2026 pstate_funcs.get_val(cpu, pstate)); in intel_pstate_set_pstate() 2302 wrmsrl(MSR_IA32_PERF_CTL, pstate_funcs.get_val(cpu, pstate)); in intel_pstate_update_pstate() 2374 .get_val = core_get_val, 2382 .get_val = atom_get_val, 2392 .get_val = atom_get_val, 2404 .get_val = core_get_val, 2888 pstate_funcs.get_val(cpu, target_pstate)); in intel_cpufreq_perf_ctl_update() 2891 pstate_funcs.get_val(cpu, target_pstate)); in intel_cpufreq_perf_ctl_update() 3243 pstate_funcs.get_val = funcs->get_val; in copy_cpu_funcs()
|
/openbmc/openbmc/poky/bitbake/lib/ |
H A D | pyinotify.py | 266 def get_val(self): member in ProcINotify 288 value = property(get_val, set_val) 291 return '<%s=%d>' % (self._attr, self.get_val())
|