mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 01:44:34 +00:00
wdt: Remove unused NEEDS_MANUAL_RELOC code bits
The last user of the NEEDS_MANUAL_RELOC has been removed in commit
26af162ac8
("arch: m68k: Implement relocation")
Remove now unused NEEDS_MANUAL_RELOC code.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
This commit is contained in:
parent
d66bea2915
commit
3bb917ee3b
1 changed files with 0 additions and 23 deletions
|
@ -236,28 +236,6 @@ void watchdog_reset(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int wdt_post_bind(struct udevice *dev)
|
|
||||||
{
|
|
||||||
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
|
||||||
struct wdt_ops *ops = (struct wdt_ops *)device_get_ops(dev);
|
|
||||||
static int reloc_done;
|
|
||||||
|
|
||||||
if (!reloc_done) {
|
|
||||||
if (ops->start)
|
|
||||||
ops->start += gd->reloc_off;
|
|
||||||
if (ops->stop)
|
|
||||||
ops->stop += gd->reloc_off;
|
|
||||||
if (ops->reset)
|
|
||||||
ops->reset += gd->reloc_off;
|
|
||||||
if (ops->expire_now)
|
|
||||||
ops->expire_now += gd->reloc_off;
|
|
||||||
|
|
||||||
reloc_done++;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int wdt_pre_probe(struct udevice *dev)
|
static int wdt_pre_probe(struct udevice *dev)
|
||||||
{
|
{
|
||||||
u32 timeout = WATCHDOG_TIMEOUT_SECS;
|
u32 timeout = WATCHDOG_TIMEOUT_SECS;
|
||||||
|
@ -295,7 +273,6 @@ UCLASS_DRIVER(wdt) = {
|
||||||
.id = UCLASS_WDT,
|
.id = UCLASS_WDT,
|
||||||
.name = "watchdog",
|
.name = "watchdog",
|
||||||
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
||||||
.post_bind = wdt_post_bind,
|
|
||||||
.pre_probe = wdt_pre_probe,
|
.pre_probe = wdt_pre_probe,
|
||||||
.per_device_auto = sizeof(struct wdt_priv),
|
.per_device_auto = sizeof(struct wdt_priv),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue