From: Johan Jonker Date: Sat, 9 Apr 2022 16:55:07 +0000 (+0200) Subject: rockchip: timer: dw-apb-timer: fix whitespace in U_BOOT_DRIVER structure X-Git-Tag: v2022.07~97^2~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3930209526b32d9075ee9c01e87ee50201934313;p=platform%2Fkernel%2Fu-boot.git rockchip: timer: dw-apb-timer: fix whitespace in U_BOOT_DRIVER structure The line with .of_to_plat in the U_BOOT_DRIVER structure of dw-apb-timer.c is not aligned with the rest. Add an extra TAB to fix the whitespace. Signed-off-by: Johan Jonker Reviewed-by: Simon Glass Reviewed-by: Kever Yang --- diff --git a/drivers/timer/dw-apb-timer.c b/drivers/timer/dw-apb-timer.c index f722697..10f0a9f 100644 --- a/drivers/timer/dw-apb-timer.c +++ b/drivers/timer/dw-apb-timer.c @@ -120,7 +120,7 @@ U_BOOT_DRIVER(snps_dw_apb_timer) = { .ops = &dw_apb_timer_ops, .probe = dw_apb_timer_probe, .of_match = dw_apb_timer_ids, - .of_to_plat = dw_apb_timer_of_to_plat, + .of_to_plat = dw_apb_timer_of_to_plat, .remove = dw_apb_timer_remove, .priv_auto = sizeof(struct dw_apb_timer_priv), .plat_auto = sizeof(struct dw_apb_timer_plat),