From: Mike Christie <michaelc@xxxxxxxxxxx> 1. Set proc name to fcoe so we can id from userspace. 2. rearrange includes in fcoe_if.c scsi comes after linux ones, and drop unused includes like the cam and tcq ones. Signed-off-by: Mike Christie <michaelc@xxxxxxxxxxx> --- drivers/scsi/fcoe/fcoe_if.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/fcoe/fcoe_if.c b/drivers/scsi/fcoe/fcoe_if.c index e92a354..24efe01 100644 --- a/drivers/scsi/fcoe/fcoe_if.c +++ b/drivers/scsi/fcoe/fcoe_if.c @@ -26,10 +26,6 @@ #include <linux/kernel.h> #include <linux/init.h> #include <linux/spinlock.h> -#include <scsi/scsi_tcq.h> -#include <scsi/scsicam.h> -#include <scsi/scsi_transport.h> -#include <scsi/scsi_transport_fc.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> #include <linux/ethtool.h> @@ -40,6 +36,8 @@ #include <scsi/fc/fc_els.h> #include <scsi/fc/fc_encaps.h> #include <scsi/fc/fc_fs.h> +#include <scsi/scsi_transport.h> +#include <scsi/scsi_transport_fc.h> #include <scsi/libfc/libfc.h> #include <scsi/libfc/fc_dbg.h> @@ -263,6 +261,7 @@ struct device_attribute *fcoe_host_attrs[] = { static struct scsi_host_template fcoe_driver_template = { .module = THIS_MODULE, .name = "FCoE Driver", + .proc_name = FCOE_DRIVER_NAME, .queuecommand = fc_queuecommand, .eh_abort_handler = fc_eh_abort, .eh_device_reset_handler = fc_eh_device_reset, -- 1.5.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html