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

« back to all changes in this revision

Viewing changes to arch/blackfin/mach-common/dpmc.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:
85
85
{
86
86
        unsigned int cpu;
87
87
        unsigned int this_cpu = smp_processor_id();
88
 
        cpumask_t mask = cpu_online_map;
 
88
        cpumask_t mask;
89
89
 
90
 
        cpu_clear(this_cpu, mask);
91
 
        for_each_cpu_mask(cpu, mask)
 
90
        cpumask_copy(&mask, cpu_online_mask);
 
91
        cpumask_clear_cpu(this_cpu, &mask);
 
92
        for_each_cpu(cpu, &mask)
92
93
                platform_send_ipi_cpu(cpu, IRQ_SUPPLE_0);
93
94
}
94
95