mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
[POWERPC] embedded6xx: Remove unnecessary loops_per_jiffy initialization code
Signed-off-by: Jon Loeliger <jdl@freescale.com> Acked-by: Mark A. Greer <mgreer@mvista.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
c3ca32fdb8
commit
2a4a9fbf26
@ -113,23 +113,11 @@ static void holly_remap_bridge(void)
|
||||
|
||||
static void __init holly_setup_arch(void)
|
||||
{
|
||||
struct device_node *cpu;
|
||||
struct device_node *np;
|
||||
|
||||
if (ppc_md.progress)
|
||||
ppc_md.progress("holly_setup_arch():set_bridge", 0);
|
||||
|
||||
cpu = of_find_node_by_type(NULL, "cpu");
|
||||
if (cpu) {
|
||||
const unsigned int *fp;
|
||||
|
||||
fp = of_get_property(cpu, "clock-frequency", NULL);
|
||||
if (fp)
|
||||
loops_per_jiffy = *fp / HZ;
|
||||
else
|
||||
loops_per_jiffy = 50000000 / HZ;
|
||||
of_node_put(cpu);
|
||||
}
|
||||
tsi108_csr_vir_base = get_vir_csrbase();
|
||||
|
||||
/* setup PCI host bridge */
|
||||
|
@ -44,7 +44,6 @@ static void __init prpmc2800_setup_arch(void)
|
||||
struct device_node *np;
|
||||
phys_addr_t paddr;
|
||||
const unsigned int *reg;
|
||||
const unsigned int *prop;
|
||||
|
||||
/*
|
||||
* ioremap mpp and gpp registers in case they are later
|
||||
@ -62,12 +61,6 @@ static void __init prpmc2800_setup_arch(void)
|
||||
of_node_put(np);
|
||||
mv64x60_gpp_reg_base = ioremap(paddr, reg[1]);
|
||||
|
||||
np = of_find_node_by_type(NULL, "cpu");
|
||||
prop = of_get_property(np, "clock-frequency", NULL);
|
||||
if (prop)
|
||||
loops_per_jiffy = *prop / HZ;
|
||||
of_node_put(np);
|
||||
|
||||
#ifdef CONFIG_PCI
|
||||
mv64x60_pci_init();
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user