Skip to content

Commit

Permalink
x86, microcode, amd: Fix missing static declaration
Browse files Browse the repository at this point in the history
Make locally used variable static.

Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Link: http://lkml.kernel.org/r/1406146251-8540-1-git-send-email-hmh@hmh.eng.br
Signed-off-by: Borislav Petkov <bp@suse.de>
  • Loading branch information
Henrique de Moraes Holschuh authored and Borislav Petkov committed Jul 24, 2014
1 parent 9a3c414 commit 1d2ce97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/microcode/amd_early.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static u32 ucode_new_rev;
u8 amd_ucode_patch[PATCH_MAX_SIZE];
static u16 this_equiv_id;

struct cpio_data ucode_cpio;
static struct cpio_data ucode_cpio;

/*
* Microcode patch container file is prepended to the initrd in cpio format.
Expand Down

0 comments on commit 1d2ce97

Please sign in to comment.