~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to arch/arm/kernel/smp_twd.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
                twd_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5);
116
116
 
117
117
                printk("%lu.%02luMHz.\n", twd_timer_rate / 1000000,
118
 
                        (twd_timer_rate / 1000000) % 100);
 
118
                        (twd_timer_rate / 10000) % 100);
119
119
        }
120
120
}
121
121
 
137
137
        clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk);
138
138
        clk->min_delta_ns = clockevent_delta2ns(0xf, clk);
139
139
 
 
140
        clockevents_register_device(clk);
 
141
 
140
142
        /* Make sure our local interrupt controller has this enabled */
141
143
        gic_enable_ppi(clk->irq);
142
 
 
143
 
        clockevents_register_device(clk);
144
144
}