]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
staging: silicom: remove BP_PROC_SUPPORT dependant code
authorSeongJae Park <sj38.park@gmail.com>
Wed, 26 Mar 2014 14:24:06 +0000 (23:24 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Apr 2014 22:33:35 +0000 (15:33 -0700)
commitbfdaa39f42e6f7b364f3c499af9a67b1d8186c8b
tree00c543ebf069062db89b8f90099e13b14c3ea211
parent87995171ac35995c4b5f2801d81a5facd8e006d6
staging: silicom: remove BP_PROC_SUPPORT dependant code

Some code is hide inside #ifdef BP_PROC_SUPPORT and it never defined
anywhere. And, it made defined but not used function which calling
code was hide inside #ifdef BP_PROC_SUPPORT and caused following
build warning:

drivers/staging/silicom/bpctl_mod.c:6786:12: warning:
‘bp_proc_create’ defined but not used [-Wunused-function]
 static int bp_proc_create(void)
            ^

Fix the warning and remove code complexity by remove whole code
inside #ifdef BP_PROC_SUPPORT.

Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/silicom/bpctl_mod.c