Fix some set_bit() warnings.
req->err = 1; /* assume update will fail on this cpu */
if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
- test_bit(X86_FEATURE_IA64, &c->x86_capability)){
+ test_bit(X86_FEATURE_IA64, c->x86_capability)){
printk(KERN_ERR "microcode: CPU%d not a capable Intel processor\n", cpu_num);
return;
}
if ( !(cpu_online_map & (1UL << cpu)) )
return -ENXIO; /* No such CPU */
- if ( !test_bit(X86_FEATURE_MSR, &c->x86_capability) )
+ if ( !test_bit(X86_FEATURE_MSR, c->x86_capability) )
return -EIO; /* MSR not supported */
return 0;