From: Jeff Kirsher Date: Sat, 18 Feb 2012 07:08:14 +0000 (+0000) Subject: ixgbe: fix namespace issues when FCoE/DCB is not enabled X-Git-Tag: v3.4-rc1~177^2~17^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8af3c33f4dab8c20c0a0eb1a7e00d2303d7f47eb;p=pandora-kernel.git ixgbe: fix namespace issues when FCoE/DCB is not enabled Resolve namespace issues when FCoE or DCB is not enabled. The issue is with certain configurations we end up with namespace problems. A simple example: ixgbe_main.c - defines func A() - uses func A() ixgbe_fcoe.c - uses func A() ixgbe.h - has prototype for func A() For default (FCoE included) all is good. But when it isn't the namespace checker complains about how func A() could be static. To resolve this, created a ixgbe_lib file to contain functions used by DCB/FCoE and their helper functions so that they are always in namespace whether or not DCB/FCoE is enabled. Signed-off-by: Jeff Kirsher Tested-by: Phil Schmitt --- Reading git-diff-tree failed