diff options
| author | Simon Glass <[email protected]> | 2020-05-10 11:40:10 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-05-18 21:19:23 -0400 |
| commit | 07e1114671c8b13d1bb90548a3c5ea31c49415d1 (patch) | |
| tree | d64c8a76ebfe729975a5b5a9e0b9f56bfdec01fb /arch | |
| parent | 1af3c7f422f627a544fec13e436d1a7975e39e73 (diff) | |
Fix some checkpatch warnings in calls to udelay()
Fix up some incorrect code style in calls to functions in the linux/time.h
header, mostly udelay().
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/cpu/sa1100/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/sa1100/timer.c b/arch/arm/cpu/sa1100/timer.c index 8e20c96bcda..f2cbee5dca7 100644 --- a/arch/arm/cpu/sa1100/timer.c +++ b/arch/arm/cpu/sa1100/timer.c @@ -23,7 +23,7 @@ ulong get_timer (ulong base) return get_timer_masked (); } -void __udelay (unsigned long usec) +void __udelay(unsigned long usec) { ulong tmo; ulong endtime; |
