From: Philipp Tomsich Date: Fri, 25 Aug 2017 11:22:00 +0000 (+0200) Subject: rockchip: timer: fix U_BOOT_DRIVER name X-Git-Tag: v2017.09~33^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5798d503fcae62fe1b82bef12adbce25cc2c1c0c;p=u-boot rockchip: timer: fix U_BOOT_DRIVER name When I originally added this driver, I did some careless (and in retrospect: mindless) copy & paste for the U_BOOT_DRIVER structure skeletion... unfortunately, the 'arc_timer' string was committed and slipped through all reviews. This fixes the U_BOOT_DRIVER name to read 'rockchip_rk3368_timer' (as originally intended). Signed-off-by: Philipp Tomsich Reported-by: Artturi Alm --- diff --git a/drivers/timer/rockchip_timer.c b/drivers/timer/rockchip_timer.c index 0848033c66..eb44965a19 100644 --- a/drivers/timer/rockchip_timer.c +++ b/drivers/timer/rockchip_timer.c @@ -92,7 +92,7 @@ static const struct udevice_id rockchip_timer_ids[] = { {} }; -U_BOOT_DRIVER(arc_timer) = { +U_BOOT_DRIVER(rockchip_rk3368_timer) = { .name = "rockchip_rk3368_timer", .id = UCLASS_TIMER, .of_match = rockchip_timer_ids,