# Targets that need extra treatment for now curvetun: LDFLAGS += -L ${CONFIG_NACL_LIB_DIR} mausezahn: CFLAGS = $(mausezahn-eflags) type='text/javascript' src='/cgit.js'>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaoyou Xie <baoyou.xie@linaro.org>2016-09-04 14:33:35 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-12 12:29:27 +0200
commitec65ef8e8aa15126970a85348359a43a4c5c301a (patch)
tree1176f5f184fce6c920396e5c47871a4706f3c91c
parent5cb6b910680c7002a2ce587c006d7390fd98c32c (diff)
Staging: rtl8192e: mark symbols static where possible
We get a few warnings when building kernel with W=1: drivers/staging/rtl8192e/rtllib_softmac.c:279:13: warning: no previous declaration for 'softmac_ps_mgmt_xmit' [-Wmissing-declarations] drivers/staging/rtl8192e/rtllib_softmac.c:773:24: warning: no previous declaration for 'rtllib_authentication_req' [-Wmissing-declarations] .... In fact, these functions are only used in the file in which they are declared and don't need a declaration, but can be made static. In addition, some of these functions are declared in different files, it looks like that we need to clean the codes of this driver up, but we can repress these warnings first, then clean it up. so this patch marks these functions with 'static' now. Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>