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