Skip to content

Commit

Permalink
[POWERPC] embedded6xx: Remove unnecessary loops_per_jiffy initializat…
Browse files Browse the repository at this point in the history
…ion 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>
  • Loading branch information
Jon Loeliger authored and Paul Mackerras committed Aug 17, 2007
1 parent c3ca32f commit 2a4a9fb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
12 changes: 0 additions & 12 deletions arch/powerpc/platforms/embedded6xx/holly.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
7 changes: 0 additions & 7 deletions arch/powerpc/platforms/embedded6xx/prpmc2800.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 2a4a9fb

Please sign in to comment.