Commit b0d428ad authored by Randy Dunlap's avatar Randy Dunlap Committed by James Bottomley

[SCSI] fcoe, libfc: fix function declarations to be ANSI-compliant

Fix function declarations:

drivers/scsi/fcoe/fcoe.c:1356:28: warning: non-ANSI function declaration of function 'fcoe_dev_setup'
drivers/scsi/libfc/fc_rport.c:1293:20: warning: non-ANSI function declaration of function 'fc_setup_rport'
drivers/scsi/libfc/fc_rport.c:1302:23: warning: non-ANSI function declaration of function 'fc_destroy_rport'

[jejb: fixed wrong doc in comment noticed during inspection]
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
parent 73da9c13
...@@ -1350,13 +1350,13 @@ static int fcoe_check_wait_queue(struct fc_lport *lp) ...@@ -1350,13 +1350,13 @@ static int fcoe_check_wait_queue(struct fc_lport *lp)
/** /**
* fcoe_dev_setup() - setup link change notification interface * fcoe_dev_setup() - setup link change notification interface
*/ */
static void fcoe_dev_setup() static void fcoe_dev_setup(void)
{ {
register_netdevice_notifier(&fcoe_notifier); register_netdevice_notifier(&fcoe_notifier);
} }
/** /**
* fcoe_dev_setup() - cleanup link change notification interface * fcoe_dev_cleanup() - cleanup link change notification interface
*/ */
static void fcoe_dev_cleanup(void) static void fcoe_dev_cleanup(void)
{ {
......
...@@ -1330,7 +1330,7 @@ int fc_rport_init(struct fc_lport *lport) ...@@ -1330,7 +1330,7 @@ int fc_rport_init(struct fc_lport *lport)
} }
EXPORT_SYMBOL(fc_rport_init); EXPORT_SYMBOL(fc_rport_init);
int fc_setup_rport() int fc_setup_rport(void)
{ {
rport_event_queue = create_singlethread_workqueue("fc_rport_eq"); rport_event_queue = create_singlethread_workqueue("fc_rport_eq");
if (!rport_event_queue) if (!rport_event_queue)
...@@ -1339,7 +1339,7 @@ int fc_setup_rport() ...@@ -1339,7 +1339,7 @@ int fc_setup_rport()
} }
EXPORT_SYMBOL(fc_setup_rport); EXPORT_SYMBOL(fc_setup_rport);
void fc_destroy_rport() void fc_destroy_rport(void)
{ {
destroy_workqueue(rport_event_queue); destroy_workqueue(rport_event_queue);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment