diff options
author | Robert Love <robert.w.love@intel.com> | 2009-11-03 14:45:58 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 13:00:55 -0500 |
commit | 8866a5d9075b7129194576f5f810e85a693c40ba (patch) | |
tree | 8976fd0009ab5870457ca0ecd7a246852744f00c /drivers/scsi/libfc/fc_fcp.c | |
parent | 255f6386b816b2bc0c251af0ee4985ad5a8461b7 (diff) |
[SCSI] libfc: Add libfc/fc_libfc.[ch] for libfc internal routines
include/scsi/libfc.h is currently loaded with common code
shared between libfc's sub-modules as well as shared between
libfc and fcoe. Previous patches attempted to move out
non-common code. This patch creates two files for common
libfc routines that will not be shared with fcoe, fnic or
any other LLDs.
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc/fc_fcp.c')
-rw-r--r-- | drivers/scsi/libfc/fc_fcp.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/scsi/libfc/fc_fcp.c b/drivers/scsi/libfc/fc_fcp.c index 3ab08f8dfb25..8a31ced98bd0 100644 --- a/drivers/scsi/libfc/fc_fcp.c +++ b/drivers/scsi/libfc/fc_fcp.c | |||
@@ -39,13 +39,7 @@ | |||
39 | #include <scsi/libfc.h> | 39 | #include <scsi/libfc.h> |
40 | #include <scsi/fc_encode.h> | 40 | #include <scsi/fc_encode.h> |
41 | 41 | ||
42 | MODULE_AUTHOR("Open-FCoE.org"); | 42 | #include "fc_libfc.h" |
43 | MODULE_DESCRIPTION("libfc"); | ||
44 | MODULE_LICENSE("GPL v2"); | ||
45 | |||
46 | unsigned int fc_debug_logging; | ||
47 | module_param_named(debug_logging, fc_debug_logging, int, S_IRUGO|S_IWUSR); | ||
48 | MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels"); | ||
49 | 43 | ||
50 | static struct kmem_cache *scsi_pkt_cachep; | 44 | static struct kmem_cache *scsi_pkt_cachep; |
51 | 45 | ||