Skip to content

Commit

Permalink
[POWERPC] kernel: Remove loops_per_jiffy code for 7448HPC2 platforms
Browse files Browse the repository at this point in the history
Remove loops_per_jiffy early initialization code for 7448HPC2 platforms.
Since udelay no longer uses loops_per_jiffy it is not necessary to
initialize it early.

Signed-off-by: Roy Zang <[email protected]>
Signed-off-by: Paul Mackerras <[email protected]>
  • Loading branch information
Zang Roy-r61911 authored and paulusmack committed May 2, 2007
1 parent f3e5d2b commit 6bfeccd
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions arch/powerpc/platforms/embedded6xx/mpc7448_hpc2.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,22 +72,10 @@ int mpc7448_hpc2_exclude_device(u_char bus, u_char devfn)

static void __init mpc7448_hpc2_setup_arch(void)
{
struct device_node *cpu;
struct device_node *np;
if (ppc_md.progress)
ppc_md.progress("mpc7448_hpc2_setup_arch():set_bridge", 0);

cpu = of_find_node_by_type(NULL, "cpu");
if (cpu != 0) {
const unsigned int *fp;

fp = of_get_property(cpu, "clock-frequency", NULL);
if (fp != 0)
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

0 comments on commit 6bfeccd

Please sign in to comment.