1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-27 08:33:10 +01:00

watchdog: wdt-uclass.c: neaten UCLASS_DRIVER definition

The addition of .pre_probe and .per_device_auto made this look
bad. Fix it.

Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
This commit is contained in:
Rasmus Villemoes
2021-08-19 11:56:57 +02:00
committed by Stefan Roese
parent 6d24dc89f0
commit 068f8eafe9

View File

@@ -210,10 +210,10 @@ static int wdt_pre_probe(struct udevice *dev)
} }
UCLASS_DRIVER(wdt) = { 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, .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),
}; };