diff options
author | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 2014-07-23 16:10:44 -0400 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2014-07-24 06:21:46 -0400 |
commit | 1d2ce978d160fa960f12d06bf84e45f47c141272 (patch) | |
tree | 94bc505fadaebaba3cd630fe8c9af5304d0fe472 /arch/x86/kernel | |
parent | 9a3c4145af32125c5ee39c0272662b47307a8323 (diff) |
x86, microcode, amd: Fix missing static declaration
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>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/cpu/microcode/amd_early.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/microcode/amd_early.c b/arch/x86/kernel/cpu/microcode/amd_early.c index 617a9e284245..7aa1acc79789 100644 --- a/arch/x86/kernel/cpu/microcode/amd_early.c +++ b/arch/x86/kernel/cpu/microcode/amd_early.c | |||
@@ -27,7 +27,7 @@ static u32 ucode_new_rev; | |||
27 | u8 amd_ucode_patch[PATCH_MAX_SIZE]; | 27 | u8 amd_ucode_patch[PATCH_MAX_SIZE]; |
28 | static u16 this_equiv_id; | 28 | static u16 this_equiv_id; |
29 | 29 | ||
30 | struct cpio_data ucode_cpio; | 30 | static struct cpio_data ucode_cpio; |
31 | 31 | ||
32 | /* | 32 | /* |
33 | * Microcode patch container file is prepended to the initrd in cpio format. | 33 | * Microcode patch container file is prepended to the initrd in cpio format. |