mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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 <jbx6244@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
516e216a78
commit
3930209526
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue