From: Andrew Donnellan Date: Mon, 18 Apr 2016 05:03:50 +0000 (+1000) Subject: cxl: static-ify variables to fix sparse warnings X-Git-Tag: v4.8-rc1~85^2~218 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=64417a398973d964139306c0b152536e468bf77c;p=platform%2Fkernel%2Flinux-exynos.git cxl: static-ify variables to fix sparse warnings Make a couple more variables static. Found by sparse. Signed-off-by: Andrew Donnellan Reviewed-by: fbarrat@linux.vnet.ibm.com Reviewed-by: Matthew R. Ochs Acked-by: Ian Munsie Signed-off-by: Michael Ellerman --- diff --git a/drivers/misc/cxl/flash.c b/drivers/misc/cxl/flash.c index 68dd0b7..c63d61e 100644 --- a/drivers/misc/cxl/flash.c +++ b/drivers/misc/cxl/flash.c @@ -24,8 +24,8 @@ struct ai_header { }; static struct semaphore sem; -unsigned long *buffer[CXL_AI_MAX_ENTRIES]; -struct sg_list *le; +static unsigned long *buffer[CXL_AI_MAX_ENTRIES]; +static struct sg_list *le; static u64 continue_token; static unsigned int transfer;