x86/microcode/intel: Move mc arg last in get_matching_{microcode|sig}
... arguments list so that it comes more natural for those functions to have the signature, processor flags and revision together, before the rest of the args. No functionality change. Signed-off-by: Borislav Petkov <bp@suse.de>
This commit is contained in:
@@ -56,10 +56,9 @@ struct extended_sigtable {
|
||||
|
||||
#define exttable_size(et) ((et)->count * EXT_SIGNATURE_SIZE + EXT_HEADER_SIZE)
|
||||
|
||||
extern int
|
||||
get_matching_microcode(unsigned int csig, int cpf, void *mc, int rev);
|
||||
extern int get_matching_microcode(unsigned int csig, int cpf, int rev, void *mc);
|
||||
extern int microcode_sanity_check(void *mc, int print_err);
|
||||
extern int get_matching_sig(unsigned int csig, int cpf, void *mc, int rev);
|
||||
extern int get_matching_sig(unsigned int csig, int cpf, int rev, void *mc);
|
||||
|
||||
static inline int
|
||||
revision_is_newer(struct microcode_header_intel *mc_header, int rev)
|
||||
|
Reference in New Issue
Block a user