diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2010-02-25 18:36:38 -0500 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-06 18:02:01 -0400 |
commit | 28552c2eae472a0a52d1cdb02eb32766c7f690e1 (patch) | |
tree | b996bede5ecde42ad8b95d99b494418b1acd2a90 /arch/arm/mach-davinci/dm355.c | |
parent | 66f41d4c5c8a5deed66fdcc84509376c9a0bf9d8 (diff) |
davinci: misc cleanups from sparse
- Convert data/functions to static
- include headers for missing declarations
- pointer cleanups: struct foo *__iomem f --> struct foo __iomem *f;
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 3dc0a88712eb..5efce70ccdd0 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c | |||
@@ -798,7 +798,7 @@ static void __iomem *dm355_psc_bases[] = { | |||
798 | * T1_BOT: Timer 1, bottom: (used by DSP in TI DSPLink code) | 798 | * T1_BOT: Timer 1, bottom: (used by DSP in TI DSPLink code) |
799 | * T1_TOP: Timer 1, top : <unused> | 799 | * T1_TOP: Timer 1, top : <unused> |
800 | */ | 800 | */ |
801 | struct davinci_timer_info dm355_timer_info = { | 801 | static struct davinci_timer_info dm355_timer_info = { |
802 | .timers = davinci_timer_instance, | 802 | .timers = davinci_timer_instance, |
803 | .clockevent_id = T0_BOT, | 803 | .clockevent_id = T0_BOT, |
804 | .clocksource_id = T0_TOP, | 804 | .clocksource_id = T0_TOP, |