Lines Matching refs:entry

59 	struct driver *entry;  in fix_drivers()  local
61 for (entry = drv; entry != drv + n_ents; entry++) { in fix_drivers()
62 if (entry->of_match) in fix_drivers()
63 entry->of_match = (const struct udevice_id *) in fix_drivers()
64 ((ulong)entry->of_match + gd->reloc_off); in fix_drivers()
65 if (entry->bind) in fix_drivers()
66 entry->bind += gd->reloc_off; in fix_drivers()
67 if (entry->probe) in fix_drivers()
68 entry->probe += gd->reloc_off; in fix_drivers()
69 if (entry->remove) in fix_drivers()
70 entry->remove += gd->reloc_off; in fix_drivers()
71 if (entry->unbind) in fix_drivers()
72 entry->unbind += gd->reloc_off; in fix_drivers()
73 if (entry->of_to_plat) in fix_drivers()
74 entry->of_to_plat += gd->reloc_off; in fix_drivers()
75 if (entry->child_post_bind) in fix_drivers()
76 entry->child_post_bind += gd->reloc_off; in fix_drivers()
77 if (entry->child_pre_probe) in fix_drivers()
78 entry->child_pre_probe += gd->reloc_off; in fix_drivers()
79 if (entry->child_post_remove) in fix_drivers()
80 entry->child_post_remove += gd->reloc_off; in fix_drivers()
82 if (entry->ops) in fix_drivers()
83 entry->ops += gd->reloc_off; in fix_drivers()
92 struct uclass_driver *entry; in fix_uclass() local
94 for (entry = uclass; entry != uclass + n_ents; entry++) { in fix_uclass()
95 if (entry->post_bind) in fix_uclass()
96 entry->post_bind += gd->reloc_off; in fix_uclass()
97 if (entry->pre_unbind) in fix_uclass()
98 entry->pre_unbind += gd->reloc_off; in fix_uclass()
99 if (entry->pre_probe) in fix_uclass()
100 entry->pre_probe += gd->reloc_off; in fix_uclass()
101 if (entry->post_probe) in fix_uclass()
102 entry->post_probe += gd->reloc_off; in fix_uclass()
103 if (entry->pre_remove) in fix_uclass()
104 entry->pre_remove += gd->reloc_off; in fix_uclass()
105 if (entry->child_post_bind) in fix_uclass()
106 entry->child_post_bind += gd->reloc_off; in fix_uclass()
107 if (entry->child_pre_probe) in fix_uclass()
108 entry->child_pre_probe += gd->reloc_off; in fix_uclass()
109 if (entry->init) in fix_uclass()
110 entry->init += gd->reloc_off; in fix_uclass()
111 if (entry->destroy) in fix_uclass()
112 entry->destroy += gd->reloc_off; in fix_uclass()
114 if (entry->ops) in fix_uclass()
115 entry->ops += gd->reloc_off; in fix_uclass()
124 struct driver_info *entry; in fix_devices() local
126 for (entry = dev; entry != dev + n_ents; entry++) { in fix_devices()
127 if (entry->plat) in fix_devices()
128 entry->plat += gd->reloc_off; in fix_devices()