aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrique de Moraes Holschuh <[email protected]>2014-07-23 20:10:44 +0000
committerBorislav Petkov <[email protected]>2014-07-24 10:21:46 +0000
commit1d2ce978d160fa960f12d06bf84e45f47c141272 (patch)
tree94bc505fadaebaba3cd630fe8c9af5304d0fe472
parentLinux 3.16-rc6 (diff)
downloadkernel-1d2ce978d160fa960f12d06bf84e45f47c141272.tar.gz
kernel-1d2ce978d160fa960f12d06bf84e45f47c141272.zip
x86, microcode, amd: Fix missing static declaration
Make locally used variable static. Signed-off-by: Henrique de Moraes Holschuh <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Borislav Petkov <[email protected]>
-rw-r--r--arch/x86/kernel/cpu/microcode/amd_early.c2
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;
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.