Lines Matching refs:e
45 const struct dt_table_entry *e; in android_dt_get_fdt_by_index() local
63 e = map_sysmem(e_addr, sizeof(*e)); in android_dt_get_fdt_by_index()
64 dt_offset = fdt32_to_cpu(e->dt_offset); in android_dt_get_fdt_by_index()
65 dt_size = fdt32_to_cpu(e->dt_size); in android_dt_get_fdt_by_index()
66 unmap_sysmem(e); in android_dt_get_fdt_by_index()
130 const struct dt_table_entry *e; in android_dt_print_contents() local
135 e = map_sysmem(e_addr, sizeof(*e)); in android_dt_print_contents()
136 dt_offset = fdt32_to_cpu(e->dt_offset); in android_dt_print_contents()
137 dt_size = fdt32_to_cpu(e->dt_size); in android_dt_print_contents()
142 printf(" id = %08x\n", fdt32_to_cpu(e->id)); in android_dt_print_contents()
143 printf(" rev = %08x\n", fdt32_to_cpu(e->rev)); in android_dt_print_contents()
146 fdt32_to_cpu(e->custom[j])); in android_dt_print_contents()
149 unmap_sysmem(e); in android_dt_print_contents()