- Remove "probe" function from sandbox wdt driver
- Fix include order
Fixes: 0753bc2d30d7 ("dm: Simple Watchdog uclass")
Signed-off-by: Maxim Sloyko <maxims@google.com>
[trini: Create as the delta between v1 (applied) and v2 (should have
applied)].
Signed-off-by: Tom Rini <trini@konsulko.com>
#include <common.h>
#include <dm.h>
-#include <asm/state.h>
#include <wdt.h>
+#include <asm/state.h>
DECLARE_GLOBAL_DATA_PTR;
return 0;
}
-static int sandbox_wdt_probe(struct udevice *dev)
-{
- struct sandbox_state *state = state_get_current();
-
- memset(&state->wdt, 0, sizeof(state->wdt));
-
- return 0;
-}
-
static const struct wdt_ops sandbox_wdt_ops = {
.start = sandbox_wdt_start,
.reset = sandbox_wdt_reset,
.id = UCLASS_WDT,
.of_match = sandbox_wdt_ids,
.ops = &sandbox_wdt_ops,
- .probe = sandbox_wdt_probe,
};