Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1233693
| From | Geliang Tang <geliangtang@163.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/2] x86/cpu/cacheinfo: amd_get/set_l3_disable_slot should be static |
| Date | 2015-09-27 17:50 +0200 |
| Message-ID | <qdmn7-31g-5@gated-at.bofh.it> (permalink) |
| References | <qdmn7-31g-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Fixes the following sparse warnings:
arch/x86/kernel/cpu/intel_cacheinfo.c:329:5: warning: symbol
'amd_get_l3_disable_slot' was not declared. Should it be static?
arch/x86/kernel/cpu/intel_cacheinfo.c:406:5: warning: symbol
'amd_set_l3_disable_slot' was not declared. Should it be static?
Signed-off-by: Geliang Tang <geliangtang@163.com>
---
arch/x86/kernel/cpu/intel_cacheinfo.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 6245a3c..e38d338 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -326,7 +326,7 @@ static void amd_calc_l3_indices(struct amd_northbridge *nb)
*
* @returns: the disabled index if used or negative value if slot free.
*/
-int amd_get_l3_disable_slot(struct amd_northbridge *nb, unsigned slot)
+static int amd_get_l3_disable_slot(struct amd_northbridge *nb, unsigned slot)
{
unsigned int reg = 0;
@@ -403,8 +403,8 @@ static void amd_l3_disable_index(struct amd_northbridge *nb, int cpu,
*
* @return: 0 on success, error status on failure
*/
-int amd_set_l3_disable_slot(struct amd_northbridge *nb, int cpu, unsigned slot,
- unsigned long index)
+static int amd_set_l3_disable_slot(struct amd_northbridge *nb, int cpu,
+ unsigned slot, unsigned long index)
{
int ret = 0;
--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 2/2] x86/cpu/cacheinfo: amd_get/set_l3_disable_slot should be static Geliang Tang <geliangtang@163.com> - 2015-09-27 17:50 +0200 Re: [PATCH 2/2] x86/cpu/cacheinfo: amd_get/set_l3_disable_slot should be static Borislav Petkov <bp@suse.de> - 2015-09-28 09:30 +0200
csiph-web