diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-08 17:36:57 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-08 17:36:57 +0900 |
commit | ef9f89996e450e9686816b6fc1e34d7b9a65766c (patch) | |
tree | 1af533b5b5e5dc2ed20267fc74d6137c3ed6be75 /arch/sh/lib64/udelay.c | |
parent | cb3a86c89ebdf917b88665f70e06863986fbab5c (diff) | |
download | blackbird-op-linux-ef9f89996e450e9686816b6fc1e34d7b9a65766c.tar.gz blackbird-op-linux-ef9f89996e450e9686816b6fc1e34d7b9a65766c.zip |
sh: Kill off unused sh64 debug code.
None of the print_page() code and associated helpers are presently used
by anything in-tree, so just kill it off.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/lib64/udelay.c')
-rw-r--r-- | arch/sh/lib64/udelay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/lib64/udelay.c b/arch/sh/lib64/udelay.c index d76bd801194f..f215b063da70 100644 --- a/arch/sh/lib64/udelay.c +++ b/arch/sh/lib64/udelay.c @@ -33,7 +33,7 @@ void __delay(unsigned long loops) :"0"(loops)); } -inline void __const_udelay(unsigned long xloops) +void __const_udelay(unsigned long xloops) { __delay(xloops * (HZ * cpu_data[raw_smp_processor_id()].loops_per_jiffy)); } |