Lines Matching refs:entry

78 	struct driver *entry;  in fix_drivers()  local
80 for (entry = drv; entry != drv + n_ents; entry++) { in fix_drivers()
81 if (entry->of_match) in fix_drivers()
82 entry->of_match = (const struct udevice_id *) in fix_drivers()
83 ((u32)entry->of_match + gd->reloc_off); in fix_drivers()
84 if (entry->bind) in fix_drivers()
85 entry->bind += gd->reloc_off; in fix_drivers()
86 if (entry->probe) in fix_drivers()
87 entry->probe += gd->reloc_off; in fix_drivers()
88 if (entry->remove) in fix_drivers()
89 entry->remove += gd->reloc_off; in fix_drivers()
90 if (entry->unbind) in fix_drivers()
91 entry->unbind += gd->reloc_off; in fix_drivers()
92 if (entry->ofdata_to_platdata) in fix_drivers()
93 entry->ofdata_to_platdata += gd->reloc_off; in fix_drivers()
94 if (entry->child_post_bind) in fix_drivers()
95 entry->child_post_bind += gd->reloc_off; in fix_drivers()
96 if (entry->child_pre_probe) in fix_drivers()
97 entry->child_pre_probe += gd->reloc_off; in fix_drivers()
98 if (entry->child_post_remove) in fix_drivers()
99 entry->child_post_remove += gd->reloc_off; in fix_drivers()
101 if (entry->ops) in fix_drivers()
102 entry->ops += gd->reloc_off; in fix_drivers()
111 struct uclass_driver *entry; in fix_uclass() local
113 for (entry = uclass; entry != uclass + n_ents; entry++) { in fix_uclass()
114 if (entry->post_bind) in fix_uclass()
115 entry->post_bind += gd->reloc_off; in fix_uclass()
116 if (entry->pre_unbind) in fix_uclass()
117 entry->pre_unbind += gd->reloc_off; in fix_uclass()
118 if (entry->pre_probe) in fix_uclass()
119 entry->pre_probe += gd->reloc_off; in fix_uclass()
120 if (entry->post_probe) in fix_uclass()
121 entry->post_probe += gd->reloc_off; in fix_uclass()
122 if (entry->pre_remove) in fix_uclass()
123 entry->pre_remove += gd->reloc_off; in fix_uclass()
124 if (entry->child_post_bind) in fix_uclass()
125 entry->child_post_bind += gd->reloc_off; in fix_uclass()
126 if (entry->child_pre_probe) in fix_uclass()
127 entry->child_pre_probe += gd->reloc_off; in fix_uclass()
128 if (entry->init) in fix_uclass()
129 entry->init += gd->reloc_off; in fix_uclass()
130 if (entry->destroy) in fix_uclass()
131 entry->destroy += gd->reloc_off; in fix_uclass()
133 if (entry->ops) in fix_uclass()
134 entry->ops += gd->reloc_off; in fix_uclass()
143 struct driver_info *entry; in fix_devices() local
145 for (entry = dev; entry != dev + n_ents; entry++) { in fix_devices()
146 if (entry->platdata) in fix_devices()
147 entry->platdata += gd->reloc_off; in fix_devices()