~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/x86/kernel/apic/apic_noop.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-3o58a3c1bj7x00rs
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:
119
119
        WARN_ON_ONCE(cpu_has_apic && !disable_apic);
120
120
}
121
121
 
122
 
#ifdef CONFIG_X86_32
123
 
static int noop_x86_32_numa_cpu_node(int cpu)
124
 
{
125
 
        /* we're always on node 0 */
126
 
        return 0;
127
 
}
128
 
#endif
129
 
 
130
122
struct apic apic_noop = {
131
123
        .name                           = "noop",
132
124
        .probe                          = noop_probe,
195
187
 
196
188
#ifdef CONFIG_X86_32
197
189
        .x86_32_early_logical_apicid    = noop_x86_32_early_logical_apicid,
198
 
        .x86_32_numa_cpu_node           = noop_x86_32_numa_cpu_node,
199
190
#endif
200
191
};