1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 17:13:16 +03:00

[ar7] remove old 2.6.24 code

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16240 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-06-01 08:04:56 +00:00
parent f1993df80d
commit 3fdb5f3632
2 changed files with 0 additions and 15 deletions

View File

@ -25,9 +25,6 @@
#include <asm/ar7/ar7.h>
#include <asm/ar7/prom.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24) /* TODO remove when 2.6.24 is stable */
extern void ar7_time_init(void);
#endif
static void ar7_machine_restart(char *command);
static void ar7_machine_halt(void);
static void ar7_machine_power_off(void);
@ -86,9 +83,6 @@ void __init plat_mem_setup(void)
_machine_restart = ar7_machine_restart;
_machine_halt = ar7_machine_halt;
pm_power_off = ar7_machine_power_off;
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24) /* TODO remove when 2.6.24 is stable */
board_time_init = ar7_time_init;
#endif
panic_timeout = 3;
io_base = (unsigned long)ioremap(AR7_REGS_BASE, 0x10000);

View File

@ -22,16 +22,7 @@
#include <asm/time.h>
#include <asm/ar7/ar7.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24) /* TODO remove when 2.6.24 is stable */
void __init plat_timer_setup(struct irqaction *irq)
{
setup_irq(7, irq);
}
void __init ar7_time_init(void)
#else
void __init plat_time_init(void)
#endif
{
mips_hpt_frequency = ar7_cpu_freq() / 2;
}