From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix scsi/fc 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' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> --- drivers/scsi/fcoe/fcoe.c | 2 +- drivers/scsi/libfc/fc_rport.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- mmotm-2009-0427-1545.orig/drivers/scsi/fcoe/fcoe.c +++ mmotm-2009-0427-1545/drivers/scsi/fcoe/fcoe.c @@ -1353,7 +1353,7 @@ out: /** * fcoe_dev_setup() - setup link change notification interface */ -static void fcoe_dev_setup() +static void fcoe_dev_setup(void) { /* * here setup a interface specific wd time to --- mmotm-2009-0427-1545.orig/drivers/scsi/libfc/fc_rport.c +++ mmotm-2009-0427-1545/drivers/scsi/libfc/fc_rport.c @@ -1290,7 +1290,7 @@ int fc_rport_init(struct fc_lport *lport } EXPORT_SYMBOL(fc_rport_init); -int fc_setup_rport() +int fc_setup_rport(void) { rport_event_queue = create_singlethread_workqueue("fc_rport_eq"); if (!rport_event_queue) @@ -1299,7 +1299,7 @@ int fc_setup_rport() } EXPORT_SYMBOL(fc_setup_rport); -void fc_destroy_rport() +void fc_destroy_rport(void) { destroy_workqueue(rport_event_queue); } -- 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